package com.vci.ubcs.code.vo.pagemodel;
|
|
//
|
// Source code recreated from a .class file by IntelliJ IDEA
|
// (powered by FernFlower decompiler)
|
//
|
|
import java.io.Serializable;
|
import java.util.Map;
|
|
public class TreeQueryObject implements Serializable {
|
private static final long serialVersionUID = -7570704940199743059L;
|
private Map<String, String> conditionMap;
|
private boolean multipleSelect;
|
private boolean showCheckBox;
|
private boolean queryAllLevel;
|
private String parentOid;
|
private String parentBtmName;
|
private String valueField = "oid";
|
private String textField = "name";
|
private String parentFieldName;
|
private Map<String, String> extandParamsMap;
|
private boolean queryAllRev;
|
private String sort;
|
private String order;
|
|
public TreeQueryObject() {
|
}
|
|
public String getValueField() {
|
return this.valueField;
|
}
|
|
public void setValueField(String valueField) {
|
this.valueField = valueField;
|
}
|
|
public String getTextField() {
|
return this.textField;
|
}
|
|
public void setTextField(String textField) {
|
this.textField = textField;
|
}
|
|
public String getParentFieldName() {
|
return this.parentFieldName;
|
}
|
|
public void setParentFieldName(String parentFieldName) {
|
this.parentFieldName = parentFieldName;
|
}
|
|
public Map<String, String> getConditionMap() {
|
return this.conditionMap;
|
}
|
|
public void setConditionMap(Map<String, String> conditionMap) {
|
this.conditionMap = conditionMap;
|
}
|
|
public boolean isMultipleSelect() {
|
return this.multipleSelect;
|
}
|
|
public void setMultipleSelect(boolean multipleSelect) {
|
this.multipleSelect = multipleSelect;
|
}
|
|
public boolean isShowCheckBox() {
|
return this.showCheckBox;
|
}
|
|
public void setShowCheckBox(boolean showCheckBox) {
|
this.showCheckBox = showCheckBox;
|
}
|
|
public String getParentOid() {
|
return this.parentOid;
|
}
|
|
public void setParentOid(String parentOid) {
|
this.parentOid = parentOid;
|
}
|
|
public String getParentBtmName() {
|
return this.parentBtmName;
|
}
|
|
public void setParentBtmName(String parentBtmName) {
|
this.parentBtmName = parentBtmName;
|
}
|
|
public Map<String, String> getExtandParamsMap() {
|
return this.extandParamsMap;
|
}
|
|
public void setExtandParamsMap(Map<String, String> extandParamsMap) {
|
this.extandParamsMap = extandParamsMap;
|
}
|
|
public boolean isQueryAllLevel() {
|
return this.queryAllLevel;
|
}
|
|
public void setQueryAllLevel(boolean queryAllLevel) {
|
this.queryAllLevel = queryAllLevel;
|
}
|
|
public boolean isQueryAllRev() {
|
return this.queryAllRev;
|
}
|
|
public void setQueryAllRev(boolean queryAllRev) {
|
this.queryAllRev = queryAllRev;
|
}
|
|
public String getSort() {
|
return this.sort;
|
}
|
|
public void setSort(String sort) {
|
this.sort = sort;
|
}
|
|
public String getOrder() {
|
return this.order;
|
}
|
|
public void setOrder(String order) {
|
this.order = order;
|
}
|
|
public String toString() {
|
return "TreeQueryObject{conditionMap=" + this.conditionMap + ", multipleSelect=" + this.multipleSelect + ", showCheckBox=" + this.showCheckBox + ", queryAllLevel=" + this.queryAllLevel + ", parentOid='" + this.parentOid + '\'' + ", parentBtmName='" + this.parentBtmName + '\'' + ", valueField='" + this.valueField + '\'' + ", textField='" + this.textField + '\'' + ", parentFieldName='" + this.parentFieldName + '\'' + ", extandParamsMap=" + this.extandParamsMap + ", queryAllRev=" + this.queryAllRev + ", sort='" + this.sort + '\'' + ", order='" + this.order + '\'' + '}';
|
}
|
}
|