ludc
2023-09-12 7f9d6840cc01c25ac9816df60dbac3d040594fa3
Source/UBCS/ubcs-service-api/ubcs-util-api/src/main/java/com/vci/ubcs/starter/web/pagemodel/Tree.java
@@ -14,6 +14,7 @@
   private static final long serialVersionUID = 6886695271635257882L;
   private String oid;
   private String text;
   private String name;
   private boolean leaf = false;
   private boolean showCheckbox = false;
   private boolean checked = false;
@@ -42,6 +43,14 @@
   public void setOid(String oid) {
      this.oid = oid;
   }
   public String getName() {
      return this.name;
   }
   public void setName(String name) {
      this.name = name;
   }
   public String getText() {
@@ -198,6 +207,7 @@
   }
   @Override
   public String toString() {
      return "Tree{oid='" + this.oid + '\'' + ", text='" + this.text + '\'' + ", leaf=" + this.leaf + ", showCheckbox=" + this.showCheckbox + ", checked=" + this.checked + ", children=" + this.children + ", icon='" + this.icon + '\'' + ", iconCls='" + this.iconCls + '\'' + ", parentId='" + this.parentId + '\'' + ", parentName='" + this.parentName + '\'' + ", parentBtmName='" + this.parentBtmName + '\'' + ", expanded=" + this.expanded + ", href='" + this.href + '\'' + ", index='" + this.index + '\'' + ", attributes=" + this.attributes + '}';
   }