初始提交

This commit is contained in:
wyf
2026-01-20 09:26:55 +08:00
commit dd4447a029
106 changed files with 11690 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
enum MessageStatus {
//消息状态 0:无需处理 1:待处理 2:已处理
notify(0, "无需处理"),
waring(1, "待处理"),
dealed(2, "已处理");
// 枚举的值
final int code; // 整数值
final String description; // 字符串描述
// 构造函数
const MessageStatus(this.code, this.description);
}