refactor: 补充消息类型字典初始数据

This commit is contained in:
2024-06-11 23:46:56 +08:00
parent 48d0f47614
commit 5abdb8d861
5 changed files with 24 additions and 34 deletions

View File

@@ -32,9 +32,9 @@ import top.continew.starter.data.mybatis.plus.base.IBaseEnum;
public enum MessageTypeEnum implements IBaseEnum<Integer> {
/**
* 系统消息
* 安全消息
*/
SYSTEM(1, "系统消息", UiConstants.COLOR_PRIMARY),;
SECURITY(1, "安全消息", UiConstants.COLOR_PRIMARY),;
private final Integer value;
private final String description;