初始提交

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

11
bin/enum/BedStatus.dart Normal file
View File

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