足力健后端,使用.netcore版本,合并1个项目使用

TreeViewModel.cs 544B

123456789101112131415161718
  1. namespace System.Common
  2. {
  3. public class TreeViewModel
  4. {
  5. public string parentId { get; set; }
  6. public string id { get; set; }
  7. public string text { get; set; }
  8. public string value { get; set; }
  9. public int? checkstate { get; set; }
  10. public bool showcheck { get; set; }
  11. public bool complete { get; set; }
  12. public bool isexpand { get; set; }
  13. public bool hasChildren { get; set; }
  14. public string img { get; set; }
  15. public string title { get; set; }
  16. }
  17. }