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

import com.viontech.fanxing.commons.model.Channel;
import com.viontech.fanxing.commons.vobase.ChannelVoBase;
import org.springframework.web.multipart.MultipartFile;

import java.util.List;

public class ChannelVo extends ChannelVoBase {

    private Boolean tree;

    public ChannelVo() {
        super();
    }

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

    public Boolean getTree() {
        return tree;
    }

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