Ldc
2024-04-07 0652600959e5e3b5796fb6e8da129704ca95347a
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
package com.vci.web.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 + '\'' +
                '}';
    }
}