上饶市公安局wvp平台
zhongrj
2025-01-16 f1d079f9c0b3d384090477ca54e0548373d62b57
src/main/java/com/genersoft/iot/vmp/utils/node/TreeNode.java
New file
@@ -0,0 +1,42 @@
package com.genersoft.iot.vmp.utils.node;
/**
 * 树型节点类
 *
 */
public class TreeNode extends BaseNode<TreeNode> {
   private static final long serialVersionUID = 1L;
   private String title;
   private String key;
   private String value;
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
   public String getKey() {
      return key;
   }
   public void setKey(String key) {
      this.key = key;
   }
   public String getValue() {
      return value;
   }
   public void setValue(String value) {
      this.value = value;
   }
}