ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
164
165
166
167
168
169
170
171
172
173
174
175
package com.vci.query;
 
import com.vci.starter.web.pagemodel.PageHelper;
 
import java.util.Collection;
import java.util.Map;
 
/**
 * 链接类型的查询对象
 * @author weidy
 * @date 2021/3/10
 */
public class UILinkTypeDataQuery extends UIBaseQuery{
 
    /**
     * 查询模板的名称
     */
    private String queryTemplateName;
 
    /**
     * 链接类型
     */
    private String linkType;
 
    /**
     * 起始查询的值
     */
    private String parentOid;
 
    /**
     * 查询条件
     */
    private Map<String,String> conditionMap;
 
 
    /**
     * 分页和排序的对象
     */
    private PageHelper pageHelper;
 
    /**
     * 查询的字段,如果没有设置,默认为*
     */
    private Collection<String> clauseList;
 
    /**
     * 要查询的to端的业务类型,不设置就会查询全部
     */
    private String toBtmType;
 
    /**
     * 是否反向,true表示查询from端的信息
     */
    private boolean direction = false;
 
    /**
     * 是否查询全部,false表示逐级查询
     */
    private boolean queryAllLevel = false;
 
    /**
     * 替换的属性信息
     */
    private Map<String,Object> replaceMap;
 
    /**
     * 指定层级
     */
    private int level = 0 ;
 
    public String getQueryTemplateName() {
        return queryTemplateName;
    }
 
    public void setQueryTemplateName(String queryTemplateName) {
        this.queryTemplateName = queryTemplateName;
    }
 
    public Map<String, String> getConditionMap() {
        return conditionMap;
    }
 
    public void setConditionMap(Map<String, String> conditionMap) {
        this.conditionMap = conditionMap;
    }
 
    public PageHelper getPageHelper() {
        return pageHelper;
    }
 
    public void setPageHelper(PageHelper pageHelper) {
        this.pageHelper = pageHelper;
    }
 
    public Collection<String> getClauseList() {
        return clauseList;
    }
 
    public void setClauseList(Collection<String> clauseList) {
        this.clauseList = clauseList;
    }
 
    public String getToBtmType() {
        return toBtmType;
    }
 
    public void setToBtmType(String toBtmType) {
        this.toBtmType = toBtmType;
    }
 
    public boolean isDirection() {
        return direction;
    }
 
    public void setDirection(boolean direction) {
        this.direction = direction;
    }
 
    public boolean isQueryAllLevel() {
        return queryAllLevel;
    }
 
    public void setQueryAllLevel(boolean queryAllLevel) {
        this.queryAllLevel = queryAllLevel;
    }
 
    public int getLevel() {
        return level;
    }
 
    public void setLevel(int level) {
        this.level = level;
    }
 
    public String getParentOid() {
        return parentOid;
    }
 
    public void setParentOid(String parentOid) {
        this.parentOid = parentOid;
    }
 
    public String getLinkType() {
        return linkType;
    }
 
    public void setLinkType(String linkType) {
        this.linkType = linkType;
    }
 
    public Map<String, Object> getReplaceMap() {
        return replaceMap;
    }
 
    public void setReplaceMap(Map<String, Object> replaceMap) {
        this.replaceMap = replaceMap;
    }
 
    @Override
    public String toString() {
        return "UILinkTypeDataQuery{" +
                "queryTemplateName='" + queryTemplateName + '\'' +
                ", linkType='" + linkType + '\'' +
                ", parentOid='" + parentOid + '\'' +
                ", conditionMap=" + conditionMap +
                ", pageHelper=" + pageHelper +
                ", clauseList=" + clauseList +
                ", toBtmType='" + toBtmType + '\'' +
                ", direction=" + direction +
                ", queryAllLevel=" + queryAllLevel +
                ", replaceMap=" + replaceMap +
                ", level=" + level +
                "} " + super.toString();
    }
}