消息修改

This commit is contained in:
梁琦涛
2021-09-24 15:51:19 +08:00
parent 64fec0b396
commit 1393c7eb2b
16 changed files with 258 additions and 81 deletions
@@ -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;
@@ -25,6 +26,7 @@ public class SysMessageTemplate extends JeroEntity {
private java.lang.String templateCode;
/**模板标题*/
@Excel(name = "模板标题", width = 30)
@Dict(dicCode = "notice_type")
private java.lang.String templateName;
/**模板内容*/
@Excel(name = "模板内容", width = 50)
@@ -32,7 +32,7 @@ public class SysAnnouncement implements Serializable {
* 标题
*/
@Excel(name = "标题", width = 15)
@Dict(dicCode = "message_type")
@Dict(dicCode = "notice_type")
private java.lang.String titile;
/**
* 内容
@@ -30,7 +30,7 @@ public class AnnouncementSendModel implements Serializable {
/**用户id*/
private java.lang.String userId;
/**标题*/
@Dict(dicCode = "message_type")
@Dict(dicCode = "notice_type")
private java.lang.String titile;
/**内容*/
private java.lang.String msgContent;