using SqlSugar; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { /// /// 民族表 /// public class T_Base_Nation { /// /// ID /// [SugarColumn(IsIdentity = true)] public int ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 名族名称 /// public string NationName { get; set; } /// /// 拼音码 /// public string PymCode { get; set; } /// /// 五笔码 /// public string WbmCode { get; set; } /// /// 是否启用 /// public int IsEnable { get; set; } /// /// 排序 /// public int OrderBy { get; set; } /// /// 所属编号 /// public long SystemModuleID { get; set; } /// /// 值 /// public string Value { get; set; } } }