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