You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
525 B

namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity;
/// <summary>
/// 级别设定表
/// </summary>
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;
}