TreeView.cs 506 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel
  5. {
  6. public class TreeView
  7. {
  8. public string id { get; set; }
  9. public string name { get; set; }
  10. public string parentId { get; set; }
  11. public int? sort { get; set; }
  12. public string fullId { get; set; }
  13. public int level { get; set; }
  14. public bool? isDisabled { get; set; }
  15. public List<TreeView> childrens { get; set; }
  16. }
  17. }