using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Community.Model.Build { /// /// 住户 /// public class Household { public Household() { } /// /// 主键 /// public int Id { set; get; } /// /// 楼 /// public int House { set; get; } /// /// 住户类别(1-房主,2-家庭成员,3-承租人,4-二房东,5-中介) /// public int HoldType { set; get; } /// /// 姓名 /// public string Name { set; get; } /// /// 性别 /// public string Gender { set; get; } /// /// 民族 /// public string Nation { set; get; } /// /// 政治面貌 /// public string Political { set; get; } /// /// 身份证号 /// public string IdNum { set; get; } /// /// 户籍所在地 /// public string Addr { set; get; } /// /// 联系方式 /// public string Phone { set; get; } /// /// 备注 /// public string Remark { set; get; } } }