DictCodeVo.java
718 Bytes
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
package com.viontech.fanxing.commons.vo;
import com.viontech.fanxing.commons.model.DictCode;
import com.viontech.fanxing.commons.vobase.DictCodeVoBase;
import java.util.List;
public class DictCodeVo extends DictCodeVoBase {
private List children;
private Boolean tree;
public DictCodeVo() {
super();
}
public DictCodeVo(DictCode dictCode) {
super(dictCode);
}
public List getChildren() {
return children;
}
public void setChildren(List children) {
this.children = children;
}
public Boolean getTree() {
return tree;
}
public DictCodeVo setTree(Boolean tree) {
this.tree = tree;
return this;
}
}