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.

14 lines
548 B

namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity;
/// <summary>
/// 评级设定明细
/// </summary>
public class GradeLevelSetDtl: BaseEntity
{
public string Mst_Sign { get; set; } = string.Empty;
public string Mst_Name { get; set; } = string.Empty;
public string Tree_Sign { get; set; } = string.Empty;
public string DataSet_Sign { get; set; } = string.Empty;
public string Level_Sign { get; set; } = string.Empty;
public double Max_Value { get; set; }
public double Min_Value { get; set; }
}