18 lines
550 B
Dart
Raw Permalink Normal View History

2023-09-04 15:00:42 +08:00
import 'package:get/get.dart';
2023-11-01 17:28:59 +08:00
import '../lockSet/lockSetInfo_entity.dart';
2023-09-07 18:36:16 +08:00
class LockTimeState{// 0普通状态(可用) 1连接中(不可用)
2023-09-07 18:36:16 +08:00
LockTimeState() {
final map = Get.arguments;
lockSetInfoData.value = map['lockSetInfoData'];
2023-09-07 18:36:16 +08:00
}
Rx<LockSetInfoData> lockSetInfoData = LockSetInfoData().obs;
RxString dateTime = ''.obs;
RxBool ifCurrentScreen = true.obs; // 是否是当前界面,用于判断是否需要针对当前界面进行展示
RxInt sureBtnState = 0.obs;
int serverTime = 0;// 服务器时间即UTC+0时间
2023-09-04 15:00:42 +08:00
}