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.

37 lines
710 B

namespace BrilliantSightClient.Model.GradeLevel.Entity;
public class GradeSet
{
/// <summary>
/// 数据
/// </summary>
public UseDataSet DataSet { get; set; }
/// <summary>
/// 分级设定
/// </summary>
public List<NumSet> NumSets { get; set; }
}
public class NumSet
{
/// <summary>
/// 评级名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 评级设定
/// </summary>
public LevelSetEntity LevelSet { get; set; }
/// <summary>
/// 最大值
/// </summary>
public double MaxValue { get; set; }
/// <summary>
/// 最小值
/// </summary>
public double MinValue { get; set; }
}