using System.Collections.Generic; namespace CallCenter.Utility { public class TreeGridModel { public string id { get; set; } public string parentId { get; set; } public string text { get; set; } public bool isLeaf { get; set; } public bool expanded { get; set; } public bool loaded { get; set; } public string entityJson { get; set; } } public class Cus_RegionTreeModel { /// /// 文章ID /// public int id { get; set; } /// /// 父ID /// public int ParentId { get; set; } /// /// 分类名称 /// public string text { get; set; } /// /// 城市信息 /// public string city { get; set; } /// /// 物业信息 /// public string property { get; set; } /// /// 分类排序 /// public int Sort { get; set; } public List children { get; set; } } }