package com.vci.client.ui.tree; public class VCIBaseTreeNodeObj { private String puid; // node obj puid private String name; // node obj name private String value; // node obj value private String type; // node obj type public String getPuid() { return puid; } public void setPuid(String puid) { this.puid = puid; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String toString() { return this.name; } }