TicketItem.java 4.74 KB
package com.cnlive.goldenline.model.mine;

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

/**
 * Created by gujun on 2017/4/8.
 */

public class TicketItem {

    private String createTime;
    private int isOrdered;
    private String liveShowCategory;
    private String liveShowCategoryId;
    private String liveShowChatRoomId;
    private String liveShowCover;
    private String liveShowDes;
    private String liveShowEndTime;
    private String liveShowId;
    private String liveShowOnLinePeople;
    private String liveShowPrevueId;
    private String liveShowPrice;
    private String liveShowShareUrl;
    private String liveShowStartTime;
    private String liveShowVideoId;
    private String liveShowthumbnailImg;
    private String liveShowtitle;
    private int liveState;
    private String theatreSeat;

    public String getCreateTime() {
        return createTime;
    }

    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }

    public int getIsOrdered() {
        return isOrdered;
    }

    public void setIsOrdered(int isOrdered) {
        this.isOrdered = isOrdered;
    }

    public String getLiveShowCategory() {
        return liveShowCategory;
    }

    public void setLiveShowCategory(String liveShowCategory) {
        this.liveShowCategory = liveShowCategory;
    }

    public String getLiveShowCategoryId() {
        return liveShowCategoryId;
    }

    public void setLiveShowCategoryId(String liveShowCategoryId) {
        this.liveShowCategoryId = liveShowCategoryId;
    }

    public String getLiveShowChatRoomId() {
        return liveShowChatRoomId;
    }

    public void setLiveShowChatRoomId(String liveShowChatRoomId) {
        this.liveShowChatRoomId = liveShowChatRoomId;
    }

    public String getLiveShowCover() {
        return liveShowCover;
    }

    public void setLiveShowCover(String liveShowCover) {
        this.liveShowCover = liveShowCover;
    }

    public String getLiveShowDes() {
        return liveShowDes;
    }

    public void setLiveShowDes(String liveShowDes) {
        this.liveShowDes = liveShowDes;
    }

    public String getLiveShowEndTime() {
        return liveShowEndTime;
    }

    public void setLiveShowEndTime(String liveShowEndTime) {
        this.liveShowEndTime = liveShowEndTime;
    }

    public String getLiveShowId() {
        return liveShowId;
    }

    public void setLiveShowId(String liveShowId) {
        this.liveShowId = liveShowId;
    }

    public String getLiveShowOnLinePeople() {
        return liveShowOnLinePeople;
    }

    public void setLiveShowOnLinePeople(String liveShowOnLinePeople) {
        this.liveShowOnLinePeople = liveShowOnLinePeople;
    }

    public String getLiveShowPrevueId() {
        return liveShowPrevueId;
    }

    public void setLiveShowPrevueId(String liveShowPrevueId) {
        this.liveShowPrevueId = liveShowPrevueId;
    }

    public String getLiveShowPrice() {
        return liveShowPrice;
    }

    public void setLiveShowPrice(String liveShowPrice) {
        this.liveShowPrice = liveShowPrice;
    }

    public String getLiveShowShareUrl() {
        return liveShowShareUrl;
    }

    public void setLiveShowShareUrl(String liveShowShareUrl) {
        this.liveShowShareUrl = liveShowShareUrl;
    }

    public String getLiveShowStartTime() {
        return liveShowStartTime;
    }

    public void setLiveShowStartTime(String liveShowStartTime) {
        this.liveShowStartTime = liveShowStartTime;
    }

    public String getLiveShowVideoId() {
        return liveShowVideoId;
    }

    public void setLiveShowVideoId(String liveShowVideoId) {
        this.liveShowVideoId = liveShowVideoId;
    }

    public String getLiveShowthumbnailImg() {
        return liveShowthumbnailImg;
    }

    public void setLiveShowthumbnailImg(String liveShowthumbnailImg) {
        this.liveShowthumbnailImg = liveShowthumbnailImg;
    }

    public String getLiveShowtitle() {
        return liveShowtitle;
    }

    public void setLiveShowtitle(String liveShowtitle) {
        this.liveShowtitle = liveShowtitle;
    }

    public int getLiveState() {
        return liveState;
    }

    public void setLiveState(int liveState) {
        this.liveState = liveState;
    }

    public String getTheatreSeat() {
        return theatreSeat;
    }

    public void setTheatreSeat(String theatreSeat) {
        this.theatreSeat = theatreSeat;
    }

    public LiveShowBean toLiveShowBean() {
        return new LiveShowBean(liveShowCover, liveShowthumbnailImg, liveShowtitle, liveShowDes, liveShowPrice, liveShowStartTime, liveShowEndTime, liveShowCategoryId, liveShowCategory, liveShowOnLinePeople, liveShowId, liveShowVideoId, liveShowPrevueId, liveShowShareUrl, liveShowChatRoomId, createTime, isOrdered, theatreSeat, liveState);
    }
}