13 lines
442 B

namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity;
/// <summary>
/// 定级设定主表
/// </summary>
public class GradeLevelMst : BaseEntity
{
public string Name { get; set; } = string.Empty;
public string EName { get; set; } = string.Empty;
public int RunMode { get; set; } = -1;
public int Shape { get; set; } = 0;
public int Crown { get; set; } = 8;
public int Pavilion { get; set; } = 8;
}