2023-08-29 11:02:52 +08:00
|
|
|
|
2023-12-11 13:44:15 +08:00
|
|
|
import 'dart:async';
|
|
|
|
|
|
2023-08-29 11:02:52 +08:00
|
|
|
import 'package:get/get.dart';
|
2023-11-01 17:28:59 +08:00
|
|
|
import '../entity/lockListInfo_entity.dart';
|
2023-08-29 11:02:52 +08:00
|
|
|
|
|
|
|
|
class LockMainState {
|
|
|
|
|
|
|
|
|
|
// 0是无数据 1是有一条数据 2是有很多条数据
|
2024-08-21 18:31:19 +08:00
|
|
|
RxInt dataLength = 100.obs;
|
|
|
|
|
Rx<LockListInfoGroupEntity> lockListInfoGroupEntity = LockListInfoGroupEntity().obs;
|
2023-12-11 13:44:15 +08:00
|
|
|
|
2024-01-08 17:58:19 +08:00
|
|
|
// 网络连接状态 0没有网络 1有网络
|
2024-08-21 18:31:19 +08:00
|
|
|
RxInt networkConnectionStatus = 0.obs;
|
2024-01-08 17:58:19 +08:00
|
|
|
|
2023-12-11 13:44:15 +08:00
|
|
|
// late Timer timer;
|
2023-08-29 11:02:52 +08:00
|
|
|
}
|