using System; using System.Collections.Generic; namespace StopShopping.EF.Models; /// /// 行政区划 /// public partial class District { /// /// 主键 /// public int Id { get; set; } /// /// 父级id,顶级时为0 /// public int ParentId { get; set; } /// /// 编码 /// public string Code { get; set; } = null!; /// /// 简称 /// public string? Name { get; set; } /// /// 全称 /// public string FullName { get; set; } = null!; /// /// 名称拼音 /// public string? Pinyin { get; set; } /// /// 层级:1-省/直辖市,2-市/直辖市无,3-区,4-街道 /// public short Level { get; set; } /// /// 经度 /// public string? Latitude { get; set; } /// /// 纬度 /// public string? Longitude { get; set; } /// /// 层级中序号 /// public short Order { get; set; } }