17 lines
418 B
Dart
Executable File
17 lines
418 B
Dart
Executable File
|
|
import 'dart:async';
|
|
|
|
import 'package:get/get.dart';
|
|
import '../entity/lockListInfo_entity.dart';
|
|
|
|
class LockMainState {
|
|
|
|
// 0是无数据 1是有一条数据 2是有很多条数据
|
|
RxInt dataLength = 100.obs;
|
|
Rx<LockListInfoGroupEntity> lockListInfoGroupEntity = LockListInfoGroupEntity().obs;
|
|
|
|
// 网络连接状态 0没有网络 1有网络
|
|
RxInt networkConnectionStatus = 0.obs;
|
|
|
|
// late Timer timer;
|
|
} |