mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-12 16:50:39 +08:00
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
namespace OpenAuth.Mvc.WebCtrls.Tree
|
|
{
|
|
/// <summary>
|
|
/// wdTree实体
|
|
/// </summary>
|
|
public class TreeEntity
|
|
{
|
|
public string parentId { get; set; }
|
|
public string id { get; set; }
|
|
public string text { get; set; }
|
|
public string value { get; set; }
|
|
public int? checkstate { get; set; }
|
|
public bool showcheck { get; set; }
|
|
public bool complete { get; set; }
|
|
/// <summary>
|
|
/// 是否展开
|
|
/// </summary>
|
|
public bool isexpand { get; set; }
|
|
/// <summary>
|
|
/// 是否有子节点
|
|
/// </summary>
|
|
public bool hasChildren { get; set; }
|
|
/// <summary>
|
|
/// 图片
|
|
/// </summary>
|
|
public string img { get; set; }
|
|
/// <summary>
|
|
/// title
|
|
/// </summary>
|
|
public string title { get; set; }
|
|
/// <summary>
|
|
/// 级
|
|
/// </summary>
|
|
public int? Level { get; set; }
|
|
/// <summary>
|
|
/// 自定义属性
|
|
/// </summary>
|
|
public string Attribute { get; set; }
|
|
/// <summary>
|
|
/// 自定义属性值
|
|
/// </summary>
|
|
public string AttributeValue { get; set; }
|
|
/// <summary>
|
|
/// 自定义属性A
|
|
/// </summary>
|
|
public string AttributeA { get; set; }
|
|
/// <summary>
|
|
/// 自定义属性值A
|
|
/// </summary>
|
|
public string AttributeValueA { get; set; }
|
|
}
|
|
}
|