19 lines
477 B
Dart
19 lines
477 B
Dart
import 'package:get/get.dart';
|
|
|
|
import 'gatewayConnectionLockList_entity.dart';
|
|
|
|
class GatewayConnectionLockListState {
|
|
GatewayConnectionLockListState() {
|
|
var map = Get.arguments;
|
|
if (map['gatewayId'] > 0) {
|
|
gatewayId.value = map['gatewayId'];
|
|
}
|
|
}
|
|
|
|
RxInt gatewayId = 0.obs;
|
|
|
|
final RxList<GatewayConnectionLockItemEntity> itemDataList =
|
|
<GatewayConnectionLockItemEntity>[].obs;
|
|
bool searchBtnState = true; // 0普通状态(可用) 1不可用
|
|
}
|