Files
data_manage/bin/enum/BedStatus.dart
2026-01-20 09:26:55 +08:00

12 lines
260 B
Dart

enum BedStatus {
using(0, "使用中"), //使用中
no_using(1, "未使用"); //未使用
// 枚举的值
final int code; // 整数值
final String description; // 字符串描述
// 构造函数
const BedStatus(this.code, this.description);
}