123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- namespace Model
- {
-
-
-
- [SugarTable("sys_city", "城市表")]
- [Tenant("0")]
- public class SysCity
- {
-
-
-
- [SugarColumn(ColumnDescription = "", ColumnName = "id")]
- public int Id { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "城市id", ColumnName = "city_id")]
- public int CityId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "省市级别", ColumnName = "level")]
- public int Level { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "父级id", ColumnName = "parent_id")]
- public int ParentId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "区号", Length = 30, ColumnName = "area_code")]
- public string AreaCode { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "名称", Length = 100, ColumnName = "name")]
- public string Name { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "合并名称", Length = 255, ColumnName = "merger_name")]
- public string MergerName { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "经度", Length = 50, ColumnName = "lng")]
- public string Lng { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "纬度", Length = 50, ColumnName = "lat")]
- public string Lat { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "是否展示", ColumnName = "is_show")]
- public string IsShow { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")]
- public string CreateTime { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")]
- public string UpdateTime { get; set; }
- }
- }
|