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.

31 lines
849 B

namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity;
/// <summary>
/// 定级设定主表
/// </summary>
public class GradeLevelMst : BaseEntity
{
/// <summary>
/// 定级标准名称
/// </summary>
public string Name { get; set; } = string.Empty;
/// <summary>
/// 定级标准名称 英文
/// </summary>
public string EName { get; set; } = string.Empty;
/// <summary>
/// 运行模式 -1通用 0实验室 1工厂
/// </summary>
public int RunMode { get; set; } = -1;
/// <summary>
/// 形状 0圆形 1椭圆 2梨形
/// </summary>
public int Shape { get; set; } = 0;
/// <summary>
/// 冠数量
/// </summary>
public int Crown { get; set; } = 8;
/// <summary>
/// 亭数量
/// </summary>
public int Pavilion { get; set; } = 8;
}