namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity; /// /// 级别设定表 /// public class GradeLevelSet : BaseEntity { public string Mst_Sign { get; set; } = string.Empty; public string Mst_Name { get; set; } = string.Empty; public int Set_Type { get; set; } = 0; public string Name { get; set; } = string.Empty; public string EName { get; set; } = string.Empty; public string AName { get; set; } = string.Empty; public int Short { get; set; } = 0; }