地铁二期项目正式开始

TreeNodeStrModel.cs 947B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace YTSoft.BaseCallCenter.Model
  6. {
  7. public class TreeNodeStrModel
  8. {
  9. public string id
  10. {
  11. set;
  12. get;
  13. }
  14. /// <summary>
  15. ///
  16. /// </summary>
  17. public string name
  18. {
  19. set;
  20. get;
  21. }
  22. public string 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. private List<TreeNodeStrModel> _children;
  48. public List<TreeNodeStrModel> children
  49. {
  50. set { _children = value; }
  51. get { return _children; }
  52. }
  53. }
  54. }