using SqlSugar; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { /// /// 邮政编码 /// public class T_Base_PostCode { /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 县级代码 /// public string CountyCode { get; set; } /// /// 邮政编码 /// public string PostCode { get; set; } /// /// 区号 /// public string AreaCode { get; set; } /// /// 排序 /// public int OrderBy { get; set; } } }