package com.vci.query;
|
|
/**
|
* 树的根节点
|
* @author weidy
|
* @date 2021/3/8
|
*/
|
public class UITreeRootQuery extends UIBaseQuery{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 3458887897345583879L;
|
/**
|
* 查询模板
|
*/
|
private String queryTemplate;
|
|
/**
|
* 是否为链接类型
|
*/
|
private boolean linkTypeFlag;
|
|
/**
|
* 业务类型或者链接类型的名称
|
*/
|
private String btmType;
|
|
/**
|
* 根节点的表达式
|
*/
|
private String rootExpress;
|
|
/**
|
* 值的字段
|
*/
|
private String valueField = "oid";
|
|
/**
|
* 查询的值
|
*/
|
private String rootQueryValue;
|
|
/**
|
* 查询的字段
|
*/
|
private String rootQueryField;
|
|
|
|
public String getRootQueryValue() {
|
return rootQueryValue;
|
}
|
|
public void setRootQueryValue(String rootQueryValue) {
|
this.rootQueryValue = rootQueryValue;
|
}
|
|
public String getRootQueryField() {
|
return rootQueryField;
|
}
|
|
public void setRootQueryField(String rootQueryField) {
|
this.rootQueryField = rootQueryField;
|
}
|
|
public String getRootExpress() {
|
return rootExpress;
|
}
|
|
public void setRootExpress(String rootExpress) {
|
this.rootExpress = rootExpress;
|
}
|
|
public String getValueField() {
|
return valueField;
|
}
|
|
public void setValueField(String valueField) {
|
this.valueField = valueField;
|
}
|
|
public String getQueryTemplate() {
|
return queryTemplate;
|
}
|
|
public void setQueryTemplate(String queryTemplate) {
|
this.queryTemplate = queryTemplate;
|
}
|
|
public boolean isLinkTypeFlag() {
|
return linkTypeFlag;
|
}
|
|
public void setLinkTypeFlag(boolean linkTypeFlag) {
|
this.linkTypeFlag = linkTypeFlag;
|
}
|
|
public String getBtmType() {
|
return btmType;
|
}
|
|
public void setBtmType(String btmType) {
|
this.btmType = btmType;
|
}
|
|
@Override
|
public String toString() {
|
return "UITreeRootQuery{" +
|
"queryTemplate='" + queryTemplate + '\'' +
|
", linkTypeFlag=" + linkTypeFlag +
|
", btmType='" + btmType + '\'' +
|
", rootExpress='" + rootExpress + '\'' +
|
", valueField='" + valueField + '\'' +
|
", rootQueryValue='" + rootQueryValue + '\'' +
|
", rootQueryField='" + rootQueryField + '\'' +
|
'}';
|
}
|
}
|