EasyUiModel.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace GSMarketSys.Controllers
  6. {
  7. public class ComboTree
  8. {
  9. public string id { get; set; }
  10. public string text { get; set; }
  11. public string state { get; set; } = null;
  12. //public bool @checked { get; set; }
  13. public List<ComboTree> children { get; set; }
  14. }
  15. public class SelectItem
  16. {
  17. public string id { get; set; }
  18. public string text { get; set; }
  19. }
  20. public class VarietyCategoryTreeModel
  21. {
  22. public string VarietyCategoryNo { get; set; }
  23. public string VarietyCategoryName { get; set; }
  24. public string CountryNo { get; set; }
  25. public string ProvincialNo { get; set; }
  26. public string LocalNo { get; set; }
  27. public string IsMajorCost { get; set; }
  28. public string IsMajorSrc { get; set; }
  29. public string IsCanChecked { get; set; }
  30. public string Depth { get; set; }
  31. public string Path { get; set; }
  32. public string IsLeaf { get; set; }
  33. public string state { get; set; } = null;
  34. public List<VarietyCategoryTreeModel> children { get; set; }
  35. }
  36. }