namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity; /// /// 评级设定树 /// public class GradeLevelTreeSet: BaseEntity { /// /// 所属Mst的签名 /// public string Mst_Sign { get; set; } = string.Empty; /// /// 所属Mst的名称 /// public string Mst_Name { get; set; } = string.Empty; /// /// 节点名 /// public string Header { get; set; } = string.Empty; /// /// 节点类型:0顶级 1切工节点 2对称节点 /// public int NodeType { get; set; } = 0; /// /// 是否含有数据 0否1是 /// public int HasData { get; set; } = 0; /// /// 是否为顶级节点,只有Root、父级为Root的切工节点、父级为root的对称节点为1 /// public int IsTop { get; set; } = 0; /// /// 维度值 /// public string DimensionValue { get; set; } = string.Empty; /// /// 维度数据签名 关联GradeLevelDataSet.Sign /// public string DimensionSign { get; set; } = string.Empty; /// /// 父级节点签名 /// public string ParentSign { get; set; } = string.Empty; /// /// 节点下评级设定明细 /// private List _setDtls = new List(); public List GetLevelSetDtls() { return _setDtls; } public void AddSetDtl(GradeLevelSetDtl setDtl) { _setDtls.Add(setDtl); } }