lihang
2023-04-25 3fade6d3b27f5666672bb3af610020367f790bda
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
package com.vci.ubcs.starter.revision.model;
 
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
import java.io.Serializable;
import java.util.Map;
 
public class TreeQueryObject implements Serializable {
    private static final long serialVersionUID = -7570704940199743059L;
    private Map<String, String> conditionMap;
    private boolean multipleSelect;
    private boolean showCheckBox;
    private boolean queryAllLevel;
    private String parentOid;
    private String parentBtmName;
    private String valueField = "oid";
    private String textField = "name";
    private String parentFieldName;
    private Map<String, String> extandParamsMap;
    private boolean queryAllRev;
    private String sort;
    private String order;
 
    public TreeQueryObject() {
    }
 
    public String getValueField() {
        return this.valueField;
    }
 
    public void setValueField(String valueField) {
        this.valueField = valueField;
    }
 
    public String getTextField() {
        return this.textField;
    }
 
    public void setTextField(String textField) {
        this.textField = textField;
    }
 
    public String getParentFieldName() {
        return this.parentFieldName;
    }
 
    public void setParentFieldName(String parentFieldName) {
        this.parentFieldName = parentFieldName;
    }
 
    public Map<String, String> getConditionMap() {
        return this.conditionMap;
    }
 
    public void setConditionMap(Map<String, String> conditionMap) {
        this.conditionMap = conditionMap;
    }
 
    public boolean isMultipleSelect() {
        return this.multipleSelect;
    }
 
    public void setMultipleSelect(boolean multipleSelect) {
        this.multipleSelect = multipleSelect;
    }
 
    public boolean isShowCheckBox() {
        return this.showCheckBox;
    }
 
    public void setShowCheckBox(boolean showCheckBox) {
        this.showCheckBox = showCheckBox;
    }
 
    public String getParentOid() {
        return this.parentOid;
    }
 
    public void setParentOid(String parentOid) {
        this.parentOid = parentOid;
    }
 
    public String getParentBtmName() {
        return this.parentBtmName;
    }
 
    public void setParentBtmName(String parentBtmName) {
        this.parentBtmName = parentBtmName;
    }
 
    public Map<String, String> getExtandParamsMap() {
        return this.extandParamsMap;
    }
 
    public void setExtandParamsMap(Map<String, String> extandParamsMap) {
        this.extandParamsMap = extandParamsMap;
    }
 
    public boolean isQueryAllLevel() {
        return this.queryAllLevel;
    }
 
    public void setQueryAllLevel(boolean queryAllLevel) {
        this.queryAllLevel = queryAllLevel;
    }
 
    public boolean isQueryAllRev() {
        return this.queryAllRev;
    }
 
    public void setQueryAllRev(boolean queryAllRev) {
        this.queryAllRev = queryAllRev;
    }
 
    public String getSort() {
        return this.sort;
    }
 
    public void setSort(String sort) {
        this.sort = sort;
    }
 
    public String getOrder() {
        return this.order;
    }
 
    public void setOrder(String order) {
        this.order = order;
    }
 
    public String toString() {
        return "TreeQueryObject{conditionMap=" + this.conditionMap + ", multipleSelect=" + this.multipleSelect + ", showCheckBox=" + this.showCheckBox + ", queryAllLevel=" + this.queryAllLevel + ", parentOid='" + this.parentOid + '\'' + ", parentBtmName='" + this.parentBtmName + '\'' + ", valueField='" + this.valueField + '\'' + ", textField='" + this.textField + '\'' + ", parentFieldName='" + this.parentFieldName + '\'' + ", extandParamsMap=" + this.extandParamsMap + ", queryAllRev=" + this.queryAllRev + ", sort='" + this.sort + '\'' + ", order='" + this.order + '\'' + '}';
    }
}