17 lines
362 B
Dart
17 lines
362 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'];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
var gatewayId = 0.obs;
|
||
|
|
|
||
|
|
final itemDataList = <GatewayConnectionLockItemEntity>[].obs;
|
||
|
|
}
|