using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Community.Model.Build { /// /// 楼 /// public class Building { public Building() { } /// /// 主键 /// public int Id { set; get; } /// /// 行政区 /// public int Region { set; get; } /// /// 名称 /// public string Name { set; get; } /// /// 高度 /// public int Height { set; get; } /// /// 层数 /// public int Floor { set; get; } /// /// 负责人 /// public string Charge { set; get; } /// /// 联系方式 /// public string Phone { set; get; } /// /// 备注 /// public string Remark { set; get; } } }