郑许地铁

TreeNodeModel.cs 1012B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ZXDT.CallCenter.Model
  6. {
  7. public class TreeNodeModel
  8. {
  9. public int id
  10. {
  11. set;
  12. get;
  13. }
  14. /// <summary>
  15. ///
  16. /// </summary>
  17. public string name
  18. {
  19. set;
  20. get;
  21. }
  22. public int code
  23. {
  24. set;
  25. get;
  26. }
  27. public string iconOpen
  28. {
  29. set;
  30. get;
  31. }
  32. public string iconClose
  33. {
  34. set;
  35. get;
  36. }
  37. public string open
  38. {
  39. set;
  40. get;
  41. }
  42. public bool Checked
  43. {
  44. set;
  45. get;
  46. }
  47. public int IsOrPrivate
  48. {
  49. set;
  50. get;
  51. }
  52. private List<TreeNodeModel> _children;
  53. public List<TreeNodeModel> children
  54. {
  55. set { _children = value; }
  56. get { return _children; }
  57. }
  58. }
  59. }