// ignore_for_file: camel_case_types import 'package:fis_jsonrpc/rpc.dart'; import 'package:get/get.dart'; class ListState { /// 登记列表 final RxList _residentList = RxList([]); set residentList(List value) => _residentList.value = value; List get residentList => _residentList.value; final RxnString _resultsAndSuggestions = RxnString(); set resultsAndSuggestions(String? value) => _resultsAndSuggestions.value = value; String? get resultsAndSuggestions => _resultsAndSuggestions.value; } class ResidentModel { /// 居民姓名 final String? name; /// 居民身份证 final String idNumber; ///唯一编号 final String? code; /// 体检号 final String? physicalExamNumber; /// 居民年龄 final String? age; /// 居民地址 final String? homeAddress; /// 登记状态 final String? physicalExamStatus; /// 未做体检项目(可去) final List? unexaminedItems; /// 手机号 final String? phone; /// 当前已完成的体检项目 final List? finishedExamKeys; final DateTime? birthDay; final String? sex; ResidentModel({ this.name, required this.idNumber, this.code, this.physicalExamNumber, this.age, this.homeAddress, this.unexaminedItems, this.physicalExamStatus, this.phone, this.finishedExamKeys, this.birthDay, this.sex, }); } class VSelectGenderEnumModel { VSelectGenderEnumModel({ required this.code, required this.name, }); GenderEnum code; String name; }