AllSubscribeResponse.java 2.09 KB
package com.cnlive.goldenline.model.response;

import com.cnlive.goldenline.model.response.bean.LiveShowBean;

import java.util.ArrayList;
import java.util.List;

/**
 * description:
 * Created by Sivin on 2017/4/14.
 */

public class AllSubscribeResponse extends BaseResponse {

    private List<LiveShowBean> oneLiveList = new ArrayList<>();
    private List<LiveShowBean> twoLiveList = new ArrayList<>();
    private List<LiveShowBean> threeLiveList = new ArrayList<>();
    private List<LiveShowBean> fourLiveList = new ArrayList<>();
    private List<LiveShowBean> fiveLiveList = new ArrayList<>();
    private List<LiveShowBean> sixLiveList = new ArrayList<>();
    private List<LiveShowBean> sevenLiveList = new ArrayList<>();

    public List<LiveShowBean> getOneLiveList() {
        return oneLiveList;
    }

    public void setOneLiveList(List<LiveShowBean> oneLiveList) {
        this.oneLiveList = oneLiveList;
    }

    public List<LiveShowBean> getTwoLiveList() {
        return twoLiveList;
    }

    public void setTwoLiveList(List<LiveShowBean> twoLiveList) {
        this.twoLiveList = twoLiveList;
    }

    public List<LiveShowBean> getThreeLiveList() {
        return threeLiveList;
    }

    public void setThreeLiveList(List<LiveShowBean> threeLiveList) {
        this.threeLiveList = threeLiveList;
    }

    public List<LiveShowBean> getFourLiveList() {
        return fourLiveList;
    }

    public void setFourLiveList(List<LiveShowBean> fourLiveList) {
        this.fourLiveList = fourLiveList;
    }

    public List<LiveShowBean> getFiveLiveList() {
        return fiveLiveList;
    }

    public void setFiveLiveList(List<LiveShowBean> fiveLiveList) {
        this.fiveLiveList = fiveLiveList;
    }

    public List<LiveShowBean> getSixLiveList() {
        return sixLiveList;
    }

    public void setSixLiveList(List<LiveShowBean> sixLiveList) {
        this.sixLiveList = sixLiveList;
    }

    public List<LiveShowBean> getSevenLiveList() {
        return sevenLiveList;
    }

    public void setSevenLiveList(List<LiveShowBean> sevenLiveList) {
        this.sevenLiveList = sevenLiveList;
    }
}