ChannelVo.java 716 Bytes
package com.viontech.fanxing.commons.vo;

import com.viontech.fanxing.commons.model.Channel;
import com.viontech.fanxing.commons.vobase.ChannelVoBase;

public class ChannelVo extends ChannelVoBase {

    private Boolean tree;
    private boolean withTask;

    public ChannelVo() {
        super();
    }

    public ChannelVo(Channel channel) {
        super(channel);
    }

    public Boolean getTree() {
        return tree;
    }

    public ChannelVo setTree(Boolean tree) {
        this.tree = tree;
        return this;
    }

    public boolean isWithTask() {
        return withTask;
    }

    public ChannelVo setWithTask(boolean withTask) {
        this.withTask = withTask;
        return this;
    }
}