|
@@ -1,15 +1,16 @@
|
|
package org.jeecg.modules.system.entity;
|
|
package org.jeecg.modules.system.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
|
-
|
|
|
|
|
|
+import cn.com.ctop.common.module.annotation.Dict;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
-import lombok.Data;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
+import lombok.Data;
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @Description: 系统通告表
|
|
* @Description: 系统通告表
|
|
* @Author: jeecg-boot
|
|
* @Author: jeecg-boot
|
|
@@ -59,22 +60,26 @@ public class SysAnnouncement implements Serializable {
|
|
* 优先级(L低,M中,H高)
|
|
* 优先级(L低,M中,H高)
|
|
*/
|
|
*/
|
|
@Excel(name = "优先级", width = 15, dicCode = "priority")
|
|
@Excel(name = "优先级", width = 15, dicCode = "priority")
|
|
|
|
+ @Dict(dicCode = "priority")
|
|
private java.lang.String priority;
|
|
private java.lang.String priority;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 消息类型1:通知公告2:系统消息
|
|
* 消息类型1:通知公告2:系统消息
|
|
*/
|
|
*/
|
|
@Excel(name = "消息类型", width = 15, dicCode = "msg_category")
|
|
@Excel(name = "消息类型", width = 15, dicCode = "msg_category")
|
|
|
|
+ @Dict(dicCode = "msg_category")
|
|
private java.lang.String msgCategory;
|
|
private java.lang.String msgCategory;
|
|
/**
|
|
/**
|
|
* 通告对象类型(USER:指定用户,ALL:全体用户)
|
|
* 通告对象类型(USER:指定用户,ALL:全体用户)
|
|
*/
|
|
*/
|
|
@Excel(name = "通告对象类型", width = 15, dicCode = "msg_type")
|
|
@Excel(name = "通告对象类型", width = 15, dicCode = "msg_type")
|
|
|
|
+ @Dict(dicCode = "msg_type")
|
|
private java.lang.String msgType;
|
|
private java.lang.String msgType;
|
|
/**
|
|
/**
|
|
* 发布状态(0未发布,1已发布,2已撤销)
|
|
* 发布状态(0未发布,1已发布,2已撤销)
|
|
*/
|
|
*/
|
|
@Excel(name = "发布状态", width = 15, dicCode = "send_status")
|
|
@Excel(name = "发布状态", width = 15, dicCode = "send_status")
|
|
|
|
+ @Dict(dicCode = "send_status")
|
|
private java.lang.String sendStatus;
|
|
private java.lang.String sendStatus;
|
|
/**
|
|
/**
|
|
* 发布时间
|
|
* 发布时间
|