PlayPage.java 2.63 KB
package com.cnlive.goldenline.model;

import java.io.Serializable;
import java.util.List;

/**
 * Created by Administrator on 2016/4/28.
 */
public class PlayPage implements Serializable {
    private String tag;
    private String title;
    private PlayItemInfo playItemInfo;
    private List<List<PlayViewRecommendEntity>> playViewRecommend;
    private PlayViewComment playViewComment;
    private AllData_Zb_Anchor allData_zb_anchor;


    private WatchPeople into_zb;

    public PlayPage(String tag, PlayItemInfo playItemInfo, List<List<PlayViewRecommendEntity>> playViewRecommend, PlayViewComment playViewComment) {//点播时用
        this.tag = tag;
        this.playItemInfo = playItemInfo;
        this.playViewRecommend=playViewRecommend;
        this.playViewComment=playViewComment;
    }

    public PlayPage(String tag, String title) {//点播时用
        this.tag = tag;
        this.title = title;
    }

    public PlayPage(String tag, WatchPeople into_zb, PlayViewComment playViewComment) {//直播时用
        this.tag = tag;
        this.into_zb = into_zb;
        this.playViewComment = playViewComment;
    }

    public PlayPage(String tag, AllData_Zb_Anchor AllData_zb_anchor1, AllData_Zb_Anchor AllData_zb_anchor2) {//2.3版本后直播时用
        this.tag = tag;
        this.allData_zb_anchor = AllData_zb_anchor1;
        this.allData_zb_anchor = AllData_zb_anchor2;
    }


    public AllData_Zb_Anchor getAllData_zb_anchor() { return allData_zb_anchor; }
    public void setAllData_zb_anchor(AllData_Zb_Anchor allData_zb_anchor) { this.allData_zb_anchor = allData_zb_anchor; }

    public PlayViewComment getPlayViewComment() {
        return playViewComment;
    }
    public void setPlayViewComment(PlayViewComment playViewComment) { this.playViewComment = playViewComment; }

    public WatchPeople getInto_zb() {
        return into_zb;
    }

    public void setInto_zb(WatchPeople into_zb) {
        this.into_zb = into_zb;
    }

    public String getTag() {
        return tag;
    }

    public void setTag(String tag) {
        this.tag = tag;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public PlayItemInfo getPlayItemInfo() {
        return playItemInfo;
    }

    public void setPlayItemInfo(PlayItemInfo playItemInfo) {
        this.playItemInfo = playItemInfo;
    }

    public List<List<PlayViewRecommendEntity>> getPlayViewRecommend() {
        return playViewRecommend;
    }

    public void setPlayViewRecommend(List<List<PlayViewRecommendEntity>> playViewRecommend) {
        this.playViewRecommend = playViewRecommend;
    }
}