|
@@ -1,15 +1,14 @@
|
|
|
package org.jeecg.modules.message.entity;
|
|
|
|
|
|
-import org.jeecg.common.system.base.entity.JeecgEntity;
|
|
|
-import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-
|
|
|
+import cn.com.ctop.common.module.annotation.Dict;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.experimental.Accessors;
|
|
|
+import org.jeecg.common.system.base.entity.JeecgEntity;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
/**
|
|
|
* @Description: 消息
|
|
@@ -39,6 +38,7 @@ public class SysMessage extends JeecgEntity {
|
|
|
private java.lang.Integer esSendNum;
|
|
|
/**推送状态 0未推送 1推送成功 2推送失败*/
|
|
|
@Excel(name = "推送状态 0未推送 1推送成功 2推送失败", width = 15)
|
|
|
+ @Dict(dicCode = "msgSendStatus")
|
|
|
private java.lang.String esSendStatus;
|
|
|
/**推送时间*/
|
|
|
@Excel(name = "推送时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
@@ -50,6 +50,7 @@ public class SysMessage extends JeecgEntity {
|
|
|
private java.lang.String esTitle;
|
|
|
/**推送方式:1短信 2邮件 3微信*/
|
|
|
@Excel(name = "推送方式:1短信 2邮件 3微信", width = 15)
|
|
|
+ @Dict(dicCode = "msgType")
|
|
|
private java.lang.String esType;
|
|
|
/**备注*/
|
|
|
@Excel(name = "备注", width = 15)
|