using System; namespace JiaZhiQuan.Common.Models.PO { public class RegionPO { /// /// /// public string id { get; set; } /// /// /// public int adcode { get; set; } /// /// /// public string name { get; set; } /// /// /// public string fullname { get; set; } /// /// /// public string pinyin { get; set; } /// /// /// public decimal lat { get; set; } /// /// /// public decimal lng { get; set; } /// /// /// public string sw_lng { get; set; } /// /// /// public string sw_lat { get; set; } /// /// /// public string ne_lng { get; set; } /// /// /// public string ne_lat { get; set; } /// /// /// public string district_level { get; set; } /// /// /// public string p_adcode { get; set; } /// /// /// public DateTime create_time { get; set; } /// /// /// public DateTime update_time { get; set; } } }