package com.vci.dto;
|
|
|
import com.vci.common.qt.object.OrderInfo;
|
import com.vci.common.qt.object.PageInfo;
|
import lombok.Data;
|
import java.util.List;
|
|
/**
|
* 查询模板传输对象
|
* @author yuxc
|
* @date 2024/8/7
|
*/
|
@Data
|
public class QueryTemplateDTO {
|
private String id;
|
private String type;
|
private List<String> clauseList;
|
private String linkType;
|
private String btmType;
|
private boolean queryChildrenFlag = false;
|
private boolean queryISLeaf = false;
|
private boolean rightFlag = true;
|
private boolean secretFlag = true;
|
private String direction = "positive";
|
private ConditionDTO condition;
|
private int version = 0;
|
private PageInfo pageInfo;
|
private List<OrderInfo> orderInfoList;
|
private int level = 1;
|
private int recReturnMode = 1;
|
|
public QueryTemplateDTO() {
|
}
|
|
public String getLinkType() {
|
return this.linkType;
|
}
|
|
public void setLinkType(String linkType) {
|
this.linkType = linkType;
|
}
|
|
public String getBtmType() {
|
return this.btmType;
|
}
|
|
public void setBtmType(String btmType) {
|
this.btmType = btmType;
|
}
|
|
public boolean isQueryChildren() {
|
return this.queryChildrenFlag;
|
}
|
|
public void setQueryChildrenFlag(boolean queryChildrenFlag) {
|
this.queryChildrenFlag = queryChildrenFlag;
|
}
|
|
public String getId() {
|
return this.id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getType() {
|
return this.type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public List<String> getClauseList() {
|
return this.clauseList;
|
}
|
|
public void setClauseList(List<String> clauseList) {
|
this.clauseList = clauseList;
|
}
|
|
public ConditionDTO getCondition() {
|
return this.condition;
|
}
|
|
public void setCondition(ConditionDTO condition) {
|
this.condition = condition;
|
}
|
|
public int getVersion() {
|
return this.version;
|
}
|
|
public void setVersion(int version) {
|
this.version = version;
|
}
|
|
public String getDirection() {
|
return this.direction;
|
}
|
|
public void setDirection(String direction) {
|
this.direction = direction;
|
}
|
|
public PageInfo getPageInfo() {
|
return this.pageInfo;
|
}
|
|
public void setPageInfo(PageInfo pageInfo) {
|
this.pageInfo = pageInfo;
|
}
|
|
public List<OrderInfo> getOrderInfoList() {
|
return this.orderInfoList;
|
}
|
|
public void setOrderInfoList(List<OrderInfo> orderInfoList) {
|
this.orderInfoList = orderInfoList;
|
}
|
|
public int getLevel() {
|
return this.level;
|
}
|
|
public void setLevel(int level) {
|
this.level = level;
|
}
|
|
public int getRecReturnMode() {
|
return this.recReturnMode;
|
}
|
|
public void setRecReturnMode(int recReturnMode) {
|
this.recReturnMode = recReturnMode;
|
}
|
|
public boolean isQueryISLeaf() {
|
return this.queryISLeaf;
|
}
|
|
public void setQueryISLeaf(boolean queryISLeaf) {
|
this.queryISLeaf = queryISLeaf;
|
}
|
|
public boolean isRightFlag() {
|
return this.rightFlag;
|
}
|
|
public void setRightFlag(boolean rightFlag) {
|
this.rightFlag = rightFlag;
|
}
|
|
public boolean isSecretFlag() {
|
return this.secretFlag;
|
}
|
|
public void setSecretFlag(boolean secretFlag) {
|
this.secretFlag = secretFlag;
|
}
|
}
|