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.
25 lines
453 B
25 lines
453 B
2 years ago
|
|
||
|
public class TreeViewData
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据本身ID
|
||
|
/// </summary>
|
||
|
public int ID;
|
||
|
/// <summary>
|
||
|
/// 数据内容
|
||
|
/// </summary>
|
||
|
public string Name;
|
||
|
/// <summary>
|
||
|
/// 数据所属的父ID
|
||
|
/// </summary>
|
||
|
public int ParentID;
|
||
|
/// <summary>
|
||
|
/// 层级
|
||
|
/// </summary>
|
||
|
public int Hierarchy;
|
||
|
/// <summary>
|
||
|
/// 是否可见标志位
|
||
|
/// </summary>
|
||
|
public bool View;
|
||
|
}
|