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.

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;
}