ludc
2024-12-05 90c86c95de1d20a3c3a44cab3482388a8c221a5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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;
    }
}