1. 开始迁移通知模块的代码

This commit is contained in:
YunaiV
2021-01-13 08:48:12 +08:00
parent fc444728c9
commit 42a984c8d0
17 changed files with 160 additions and 1037 deletions

View File

@@ -0,0 +1,23 @@
package cn.iocoder.dashboard.modules.system.enums.notice;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* 通知类型
*
* @author 芋道源码
*/
@Getter
@AllArgsConstructor
public enum SysNoticeTypeEnum {
NOTICE(1),
ANNOUNCEMENT(2);
/**
* 类型
*/
private final Integer type;
}