FindSubscribeBean.java 9.33 KB
package com.cnlive.goldenline.model;

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

/**
 * Created by luxiaoman on 2017/4/9.
 */

public class FindSubscribeBean  implements Serializable {

    /**
     * errMsg : 成功
     * code : 0
     * data : [{"theatreId":1,"theatreArray":null,"type":0,"showId":null,"createTime":1490457600000,"updateTime":1490763649000,"theatreName":"保利剧院","theatreCover":"http://shtml.asia-cloud.com/touxiang/1.png","theatreCoverImgUrl":null,"theatreDes":"歌剧话剧","channelId":"baolijuyuan","boxOffice":"3000000","theatreStatus":null,"playTour":"2000000","userId":null,"theatreFans":1,"isOrdered":0,"theatreVideoCount":0,"theatreActors":null,"theatreShareUrl":null,"mediaList":null,"enabled":1,"code":0,"errMsg":""},{"theatreId":1,"theatreArray":null,"type":0,"showId":null,"createTime":1490457600000,"updateTime":1490763649000,"theatreName":"保利剧院","theatreCover":"http://shtml.asia-cloud.com/touxiang/1.png","theatreCoverImgUrl":null,"theatreDes":"歌剧话剧","channelId":"baolijuyuan","boxOffice":"3000000","theatreStatus":null,"playTour":"2000000","userId":null,"theatreFans":1,"isOrdered":0,"theatreVideoCount":0,"theatreActors":null,"theatreShareUrl":null,"mediaList":null,"enabled":1,"code":0,"errMsg":""}]
     */

    private String errMsg;
    private int code;
    private List<DataBean> data;

    public String getErrMsg() {
        return errMsg;
    }

    public void setErrMsg(String errMsg) {
        this.errMsg = errMsg;
    }

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }

    public List<DataBean> getData() {
        return data;
    }

    public void setData(List<DataBean> data) {
        this.data = data;
    }

    @Override
    public String toString() {
        return "FindSubscribeBean{" +
                "errMsg='" + errMsg + '\'' +
                ", code=" + code +
                ", data=" + data +
                '}';
    }

    public static class DataBean implements Serializable {
        /**
         * theatreId : 1
         * theatreArray : null
         * type : 0
         * showId : null
         * createTime : 1490457600000
         * updateTime : 1490763649000
         * theatreName : 保利剧院
         * theatreCover : http://shtml.asia-cloud.com/touxiang/1.png
         * theatreCoverImgUrl : null
         * theatreDes : 歌剧话剧
         * channelId : baolijuyuan
         * boxOffice : 3000000
         * theatreStatus : null
         * playTour : 2000000
         * userId : null
         * theatreFans : 1
         * isOrdered : 0
         * theatreVideoCount : 0
         * theatreActors : null
         * theatreShareUrl : null
         * mediaList : null
         * enabled : 1
         * code : 0
         * errMsg :
         */

        private int theatreId;
        private Object theatreArray;
        private int type;
        private Object showId;
        private long createTime;
        private long updateTime;
        private String theatreName;
        private String theatreCover;
        private Object theatreCoverImgUrl;
        private String theatreDes;
        private String channelId;
        private String boxOffice;
        private Object theatreStatus;
        private String playTour;
        private Object userId;
        private long theatreFans;
        private int isOrdered;
        private int theatreVideoCount;
        private Object theatreActors;
        private Object theatreShareUrl;
        private Object mediaList;
        private int enabled;
        private int code;
        private String errMsg;

        public int getTheatreId() {
            return theatreId;
        }

        public void setTheatreId(int theatreId) {
            this.theatreId = theatreId;
        }

        public Object getTheatreArray() {
            return theatreArray;
        }

        public void setTheatreArray(Object theatreArray) {
            this.theatreArray = theatreArray;
        }

        public int getType() {
            return type;
        }

        public void setType(int type) {
            this.type = type;
        }

        public Object getShowId() {
            return showId;
        }

        public void setShowId(Object showId) {
            this.showId = showId;
        }

        public long getCreateTime() {
            return createTime;
        }

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

        public long getUpdateTime() {
            return updateTime;
        }

        public void setUpdateTime(long updateTime) {
            this.updateTime = updateTime;
        }

        public String getTheatreName() {
            return theatreName;
        }

        public void setTheatreName(String theatreName) {
            this.theatreName = theatreName;
        }

        public String getTheatreCover() {
            return theatreCover;
        }

        public void setTheatreCover(String theatreCover) {
            this.theatreCover = theatreCover;
        }

        public Object getTheatreCoverImgUrl() {
            return theatreCoverImgUrl;
        }

        public void setTheatreCoverImgUrl(Object theatreCoverImgUrl) {
            this.theatreCoverImgUrl = theatreCoverImgUrl;
        }

        public String getTheatreDes() {
            return theatreDes;
        }

        public void setTheatreDes(String theatreDes) {
            this.theatreDes = theatreDes;
        }

        public String getChannelId() {
            return channelId;
        }

        public void setChannelId(String channelId) {
            this.channelId = channelId;
        }

        public String getBoxOffice() {
            return boxOffice;
        }

        public void setBoxOffice(String boxOffice) {
            this.boxOffice = boxOffice;
        }

        public Object getTheatreStatus() {
            return theatreStatus;
        }

        public void setTheatreStatus(Object theatreStatus) {
            this.theatreStatus = theatreStatus;
        }

        public String getPlayTour() {
            return playTour;
        }

        public void setPlayTour(String playTour) {
            this.playTour = playTour;
        }

        public Object getUserId() {
            return userId;
        }

        public void setUserId(Object userId) {
            this.userId = userId;
        }

        public long getTheatreFans() {
            return theatreFans;
        }

        public void setTheatreFans(long theatreFans) {
            this.theatreFans = theatreFans;
        }

        public int getIsOrdered() {
            return isOrdered;
        }

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

        public int getTheatreVideoCount() {
            return theatreVideoCount;
        }

        public void setTheatreVideoCount(int theatreVideoCount) {
            this.theatreVideoCount = theatreVideoCount;
        }

        public Object getTheatreActors() {
            return theatreActors;
        }

        public void setTheatreActors(Object theatreActors) {
            this.theatreActors = theatreActors;
        }

        public Object getTheatreShareUrl() {
            return theatreShareUrl;
        }

        public void setTheatreShareUrl(Object theatreShareUrl) {
            this.theatreShareUrl = theatreShareUrl;
        }

        public Object getMediaList() {
            return mediaList;
        }

        public void setMediaList(Object mediaList) {
            this.mediaList = mediaList;
        }

        public int getEnabled() {
            return enabled;
        }

        public void setEnabled(int enabled) {
            this.enabled = enabled;
        }

        public int getCode() {
            return code;
        }

        public void setCode(int code) {
            this.code = code;
        }

        public String getErrMsg() {
            return errMsg;
        }

        public void setErrMsg(String errMsg) {
            this.errMsg = errMsg;
        }

        @Override
        public String toString() {
            return "DataBean{" +
                    "theatreId=" + theatreId +
                    ", theatreArray=" + theatreArray +
                    ", type=" + type +
                    ", showId=" + showId +
                    ", createTime=" + createTime +
                    ", updateTime=" + updateTime +
                    ", theatreName='" + theatreName + '\'' +
                    ", theatreCover='" + theatreCover + '\'' +
                    ", theatreCoverImgUrl=" + theatreCoverImgUrl +
                    ", theatreDes='" + theatreDes + '\'' +
                    ", channelId='" + channelId + '\'' +
                    ", boxOffice='" + boxOffice + '\'' +
                    ", theatreStatus=" + theatreStatus +
                    ", playTour='" + playTour + '\'' +
                    ", userId=" + userId +
                    ", theatreFans=" + theatreFans +
                    ", isOrdered=" + isOrdered +
                    ", theatreVideoCount=" + theatreVideoCount +
                    ", theatreActors=" + theatreActors +
                    ", theatreShareUrl=" + theatreShareUrl +
                    ", mediaList=" + mediaList +
                    ", enabled=" + enabled +
                    ", code=" + code +
                    ", errMsg='" + errMsg + '\'' +
                    '}';
        }
    }

}