HeavyLiveAllResponse.java 2.96 KB
package com.cnlive.goldenline.model.response;

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

import java.util.List;

/**
 * Created by Lynn on 4/13/2017.
 */

public class HeavyLiveAllResponse extends BaseResponse {
    List<LiveShowBean> oneLiveList;
    List<LiveShowBean> twoLiveList;
    List<LiveShowBean> threeLiveList;
    List<LiveShowBean> fourLiveList;
    List<LiveShowBean> fiveLiveList;
    List<LiveShowBean> sixLiveList;
    List<LiveShowBean> sevenLiveList;

    public HeavyLiveAllResponse() {
    }

    public HeavyLiveAllResponse(int code, String errMsg, List<LiveShowBean> oneLiveList, List<LiveShowBean> twoLiveList, List<LiveShowBean> threeLiveList, List<LiveShowBean> fourLiveList, List<LiveShowBean> fiveLiveList, List<LiveShowBean> sixLiveList, List<LiveShowBean> sevenLiveList) {
        super(code, errMsg);
        this.oneLiveList = oneLiveList;
        this.twoLiveList = twoLiveList;
        this.threeLiveList = threeLiveList;
        this.fourLiveList = fourLiveList;
        this.fiveLiveList = fiveLiveList;
        this.sixLiveList = sixLiveList;
        this.sevenLiveList = sevenLiveList;
    }

    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;
    }

    @Override
    public String toString() {
        return "HeavyLiveAllResponse{" +
                "oneLiveList=" + oneLiveList +
                ", twoLiveList=" + twoLiveList +
                ", threeLiveList=" + threeLiveList +
                ", fourLiveList=" + fourLiveList +
                ", fiveLiveList=" + fiveLiveList +
                ", sixLiveList=" + sixLiveList +
                ", sevenLiveList=" + sevenLiveList +
                '}';
    }
}