Daisy c4739c9f46 1,新增设置有人按门铃接口对接
2,新增设置有人出现在门口接口对接
3,新增设置防撬报警通知接口对接
4,锁用户列表文件结构调整
2024-04-19 13:47:56 +08:00

16 lines
382 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
class LockUserState {
TextEditingController searchController = TextEditingController(); //邮箱/手机号输入框
var isCheck = false.obs;
var getLockId = 0.obs;
LockUserState() {
Map map = Get.arguments;
if (map['getLockId'] != null) {
getLockId.value = map['getLockId'];
}
}
}