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.
29 lines
909 B
29 lines
909 B
namespace BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity; |
|
/// <summary> |
|
/// 评级设定树 |
|
/// </summary> |
|
public class GradeLevelTreeSet: BaseEntity |
|
{ |
|
public string Mst_Sign { get; set; } = string.Empty; |
|
public string Mst_Name { get; set; } = string.Empty; |
|
public string Header { get; set; } = string.Empty; |
|
public int NodeType { get; set; } = 0; |
|
public int HasData { get; set; } = 0; |
|
public int IsTop { get; set; } = 0; |
|
public string DimensionValue { get; set; } = string.Empty; |
|
public string DimensionSign { get; set; } = string.Empty; |
|
public string ParentSign { get; set; } = string.Empty; |
|
|
|
private List<GradeLevelSetDtl> _setDtls = new List<GradeLevelSetDtl>(); |
|
|
|
public List<GradeLevelSetDtl> GetLevelSetDtls() |
|
{ |
|
return _setDtls; |
|
} |
|
|
|
public void AddSetDtl(GradeLevelSetDtl setDtl) |
|
{ |
|
_setDtls.Add(setDtl); |
|
} |
|
|
|
} |