51bfb5744a956dd9435dfb9822d6cf23720353e2.svn-base 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package org.jeecg.modules.system.model;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. /**
  5. * 树形下拉框
  6. */
  7. public class TreeSelectModel implements Serializable {
  8. private static final long serialVersionUID = 9016390975325574747L;
  9. private String key;
  10. private String title;
  11. private boolean isLeaf;
  12. private String icon;
  13. private String parentId;
  14. private String value;
  15. private String code;
  16. public String getValue() {
  17. return value;
  18. }
  19. public void setValue(String value) {
  20. this.value = value;
  21. }
  22. public String getParentId() {
  23. return parentId;
  24. }
  25. public void setParentId(String parentId) {
  26. this.parentId = parentId;
  27. }
  28. public String getKey() {
  29. return key;
  30. }
  31. public void setKey(String key) {
  32. this.key = key;
  33. }
  34. public String getTitle() {
  35. return title;
  36. }
  37. public void setTitle(String title) {
  38. this.title = title;
  39. }
  40. public boolean isLeaf() {
  41. return isLeaf;
  42. }
  43. public void setLeaf(boolean isLeaf) {
  44. this.isLeaf = isLeaf;
  45. }
  46. public String getIcon() {
  47. return icon;
  48. }
  49. public void setIcon(String icon) {
  50. this.icon = icon;
  51. }
  52. public String getCode() {
  53. return code;
  54. }
  55. public void setCode(String code) {
  56. this.code = code;
  57. }
  58. private List<TreeSelectModel> children;
  59. public List<TreeSelectModel> getChildren() {
  60. return children;
  61. }
  62. public void setChildren(List<TreeSelectModel> children) {
  63. this.children = children;
  64. }
  65. }