GZMachinesWeb/.svn/pristine/00/0070eec19ad14eee461c27d7c17...

112 lines
1.5 KiB
Plaintext
Raw Normal View History

2025-06-20 17:47:53 +08:00
package com.bonus.sys.beans;
import java.io.Serializable;
public class ZNode implements Serializable {
private static final long serialVersionUID = 1L;
private String id;
private String pId;
private String name;
private String checked;
private String companyId;
private String nodeId;
private String isCount;
private boolean open = true;
private boolean existed = true;
private String icon;
public String getIsCount() {
return isCount;
}
public void setIsCount(String isCount) {
this.isCount = isCount;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getNodeId() {
return nodeId;
}
public void setNodeId(String nodeId) {
this.nodeId = nodeId;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getpId() {
return pId;
}
public void setpId(String pId) {
this.pId = pId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getChecked() {
return checked;
}
public void setChecked(String checked) {
this.checked = checked;
}
public boolean isOpen() {
return open;
}
public void setOpen(boolean open) {
this.open = open;
}
public boolean isExisted() {
return existed;
}
public void setExisted(boolean existed) {
this.existed = existed;
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
}