DictCodeVo.java
990 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
40
41
42
43
44
45
46
47
48
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<DictCodeVo> children;
private List<ChannelVo> channels;
private Boolean tree;
public DictCodeVo() {
super();
}
public DictCodeVo(DictCode dictCode) {
super(dictCode);
}
public List<DictCodeVo> getChildren() {
return children;
}
public void setChildren(List<DictCodeVo> children) {
this.children = children;
}
public List<ChannelVo> getChannels() {
return channels;
}
public DictCodeVo setChannels(List<ChannelVo> channels) {
this.channels = channels;
return this;
}
public Boolean getTree() {
return tree;
}
public DictCodeVo setTree(Boolean tree) {
this.tree = tree;
return this;
}
}