12345678910111213141516171819 |
- 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<TreeView> childrens { get; set; }
- }
- }
|