using System; namespace HDL_ON.Entity { public class CustomerObj { public CustomerObj() { } /// /// 住户id /// public string customerId; /// /// 住户名称 /// public string customerName; /// /// 住户类型 /// public int customerType; /// /// 住户类型中文 /// public string customerTypeText; /// /// 苑期区编号 /// public string groupCode; /// /// 楼幢编号 /// public string buildingCode; /// /// 单元编号 /// public string unitCode; /// /// 楼层号 /// public string floorNum; /// /// 房屋编号 /// public string houseCode; /// /// 房屋名称 /// public string houseName; /// /// 住户手机号 /// public string customerPhone; /// /// 住户分机号 /// public string customerPhoneProfix; /// /// 住户性别 /// public string customerSex; /// /// 住户性别中文 /// public string customerSexText; /// /// 住户证件号 /// public string certificateNo; /// /// 住户人脸url /// public string customerFaceUrl; /// /// 住户地址 /// public string address; /// /// 人脸录入状态 /// 1:录入状态 /// 2:下发成功 /// 3:下发失败 /// public int faceStatus = 0; /// /// 人脸开启状态 /// 1:开启状态 /// 2:关闭状态 /// 3:清除人脸数据 /// public int faceClose = 0; } }