xiejun
2023-08-01 87e43c42f5bccbbad9a922ee448834a70088d083
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
176
177
178
179
package com.vci.ubcs.codeapply.object;
 
import com.vci.ubcs.starter.web.pagemodel.Tree;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
public class ReferTreObject implements Serializable {
    private static final long serialVersionUID = 6886695271635257882L;
    private String oid;
    private String text;
    private String name;
    private boolean leaf = false;
    private boolean showCheckbox = false;
    private boolean checked = false;
    private List<Tree> children = new ArrayList();
    private String icon;
    private String iconCls;
    private String parentId;
    private String parentName;
    private String parentBtmName;
    private boolean expanded = false;
    private String href;
    private String index;
    private Map<String, String> attributes = new HashMap();
 
    public String getOid() {
        return oid;
    }
 
    public void setOid(String oid) {
        this.oid = oid;
    }
 
    public String getText() {
        return text;
    }
 
    public void setText(String text) {
        this.text = text;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public boolean isLeaf() {
        return leaf;
    }
 
    public void setLeaf(boolean leaf) {
        this.leaf = leaf;
    }
 
    public boolean isShowCheckbox() {
        return showCheckbox;
    }
 
    public void setShowCheckbox(boolean showCheckbox) {
        this.showCheckbox = showCheckbox;
    }
 
    public boolean isChecked() {
        return checked;
    }
 
    public void setChecked(boolean checked) {
        this.checked = checked;
    }
 
    public List<Tree> getChildren() {
        return children;
    }
 
    public void setChildren(List<Tree> children) {
        this.children = children;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public String getIconCls() {
        return iconCls;
    }
 
    public void setIconCls(String iconCls) {
        this.iconCls = iconCls;
    }
 
    public String getParentId() {
        return parentId;
    }
 
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
 
    public String getParentName() {
        return parentName;
    }
 
    public void setParentName(String parentName) {
        this.parentName = parentName;
    }
 
    public String getParentBtmName() {
        return parentBtmName;
    }
 
    public void setParentBtmName(String parentBtmName) {
        this.parentBtmName = parentBtmName;
    }
 
    public boolean isExpanded() {
        return expanded;
    }
 
    public void setExpanded(boolean expanded) {
        this.expanded = expanded;
    }
 
    public String getHref() {
        return href;
    }
 
    public void setHref(String href) {
        this.href = href;
    }
 
    public String getIndex() {
        return index;
    }
 
    public void setIndex(String index) {
        this.index = index;
    }
 
    public Map<String, String> getAttributes() {
        return attributes;
    }
 
    public void setAttributes(Map<String, String> attributes) {
        this.attributes = attributes;
    }
 
    @Override
    public String toString() {
        return "ReferDataObject{" +
            "oid='" + oid + '\'' +
            ", text='" + text + '\'' +
            ", name='" + name + '\'' +
            ", leaf=" + leaf +
            ", showCheckbox=" + showCheckbox +
            ", checked=" + checked +
            ", children=" + children +
            ", icon='" + icon + '\'' +
            ", iconCls='" + iconCls + '\'' +
            ", parentId='" + parentId + '\'' +
            ", parentName='" + parentName + '\'' +
            ", parentBtmName='" + parentBtmName + '\'' +
            ", expanded=" + expanded +
            ", href='" + href + '\'' +
            ", index='" + index + '\'' +
            ", attributes=" + attributes +
            '}';
    }
}