using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LeaRun.Util.WebControl { /// /// 树表格实体 /// public class TreeGridEntity { public string parentId { get; set; } public string id { get; set; } public string text { get; set; } public string entityJson { get; set; } public bool expanded { get; set; } public bool hasChildren { get; set; } } }