TreeNode.java 573 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.genersoft.iot.vmp.utils.node;
  2. /**
  3. * 树型节点类
  4. *
  5. */
  6. public class TreeNode extends BaseNode<TreeNode> {
  7. private static final long serialVersionUID = 1L;
  8. private String title;
  9. private String key;
  10. private String value;
  11. public String getTitle() {
  12. return title;
  13. }
  14. public void setTitle(String title) {
  15. this.title = title;
  16. }
  17. public String getKey() {
  18. return key;
  19. }
  20. public void setKey(String key) {
  21. this.key = key;
  22. }
  23. public String getValue() {
  24. return value;
  25. }
  26. public void setValue(String value) {
  27. this.value = value;
  28. }
  29. }