app-starlock/lib/mine/gateway/gatewayConnectionLock/gatewayConnectionLockList_state.dart
魏少阳 2368bb631c 1、完成网关模块国际化
2、删除蓝牙协议模块不用的蓝牙协议文件
2024-10-15 14:24:35 +08:00

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;
}