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.

16 lines
582 B

namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity;
/// <summary>
/// 定级数据设定
/// </summary>
public class GradeLevelDataSet: BaseEntity
{
public string Mst_Sign { get; set; } = string.Empty;
public string Mst_Name { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string EName { get; set; } = string.Empty;
public string KName { get; set; } = string.Empty;
public string Unit {set; get;} = string.Empty;
public int HasCut { get; set; } = 0;
public int HasSym { get; set; } = 0;
}