add 消息类型字典

This commit is contained in:
liao
2023-10-17 14:05:37 +08:00
parent f4036dfd71
commit 8d112db4fc
2 changed files with 3 additions and 1 deletions
@@ -51,7 +51,7 @@ public class SysMessage extends JeroEntity {
@Excel(name = "消息标题", width = 15)
private java.lang.String esTitle;
/**推送方式:1短信 2邮件 3微信*/
@Excel(name = "推送方式:1短信 2邮件 3微信 4系统", width = 15)
@Excel(name = "推送方式:1短信 2邮件 3微信 4系统 5钉钉(Hiwork 6系统(Hiwork", width = 15)
@Dict(dicCode = "msgType")
private java.lang.String esType;
/**备注*/
@@ -1,5 +1,6 @@
package com.jero.modules.message.entity;
import com.jero.common.aspect.annotation.Dict;
import com.jero.common.system.base.entity.JeroEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
@@ -34,5 +35,6 @@ public class SysMessageTemplate extends JeroEntity {
private java.lang.String templateTestJson;*/
/**模板类型*/
@Excel(name = "模板类型", width = 15)
@Dict(dicCode = "msgType")
private java.lang.String templateType;
}