Announcement.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package com.wtkj.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import org.springblade.core.mp.base.BaseEntity;
  8. import org.springframework.format.annotation.DateTimeFormat;
  9. import java.time.LocalDateTime;
  10. /**
  11. * @author Blizzard
  12. * @create at 2023-09-23 11:05
  13. * @describe
  14. */
  15. @Data
  16. @TableName("blade_announcement")
  17. @EqualsAndHashCode(callSuper = true)
  18. public class Announcement extends BaseEntity {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 标题
  22. */
  23. @TableField("title")
  24. private String title;
  25. /**
  26. * 内容
  27. */
  28. @TableField("msg_content")
  29. private String msgContent;
  30. /**
  31. * 开始时间
  32. */
  33. @TableField("start_time")
  34. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  35. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  36. private LocalDateTime startTime;
  37. /**
  38. * 结束时间
  39. */
  40. @TableField("end_time")
  41. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  42. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  43. private LocalDateTime endTime;
  44. /**
  45. * 优先级(L低,M中,H高)
  46. */
  47. @TableField("priority")
  48. private String priority;
  49. /**
  50. * 消息类型1:通知公告2:系统消息
  51. */
  52. @TableField("msg_category")
  53. private Integer msgCategory;
  54. /**
  55. * 通告对象类型(1:指定用户,2:全体用户)
  56. */
  57. @TableField("msg_type")
  58. private Integer msgType;
  59. /**
  60. * 发布状态(0未发布,1已发布,2已撤销)
  61. */
  62. @TableField("send_status")
  63. private Integer sendStatus;
  64. /**
  65. * 发布时间
  66. */
  67. @TableField("send_time")
  68. private LocalDateTime sendTime;
  69. /**
  70. * 撤销时间
  71. */
  72. @TableField("cancel_time")
  73. private LocalDateTime cancelTime;
  74. /**
  75. * 打开方式(组件:component 路由:url)
  76. */
  77. @TableField("open_type")
  78. private String openType;
  79. /**
  80. * 指定用户
  81. */
  82. @TableField("user_ids")
  83. private String userIds;
  84. /**
  85. * 摘要
  86. */
  87. @TableField("msg_abstract")
  88. private String msgAbstract;
  89. /**
  90. * 组件/路由 地址
  91. */
  92. @TableField("open_page")
  93. private String openPage;
  94. @TableField("header")
  95. private String header = "asset";
  96. }