using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LeaRun.Util.WebControl
{
///
/// 树实体
///
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; }
///
/// 是否展开
///
public bool isexpand { get; set; }
///
/// 是否有子节点
///
public bool hasChildren { get; set; }
///
/// 图片
///
public string img { get; set; }
///
/// title
///
public string title { get; set; }
///
/// 级
///
public int? Level { get; set; }
///
/// 自定义属性
///
public string Attribute { get; set; }
///
/// 自定义属性值
///
public string AttributeValue { get; set; }
///
/// 自定义属性A
///
public string AttributeA { get; set; }
///
/// 自定义属性值A
///
public string AttributeValueA { get; set; }
}
}