using System; using System.Collections.Generic; using System.Text; namespace YLShipBuildLandMap.Entity.ViewModel { public class TreeView { public string id { get; set; } public string name { get; set; } public string parentId { get; set; } public int? sort { get; set; } public string fullId { get; set; } public int level { get; set; } public bool? isDisabled { get; set; } public List childrens { get; set; } } }