using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Community.Model.Build { /// /// 行政区 /// public class Region { public Region() { } /// /// 主键 /// public int Id { set; get; } /// /// 区域编码 /// public string RegionCode { set; get; } /// /// 省 /// public string Province { set; get; } /// /// 市 /// public int City { set; get; } /// /// 县/区 /// public string County { set; get; } /// /// 乡镇/街道 /// public string Street { set; get; } /// /// 社区/村 /// public string Community { set; get; } /// /// 社区/村 /// public string Village { set; get; } } }