DictCodeVo.java 990 Bytes
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;
    }
}