HallBean.java 2.54 KB
package com.cnlive.goldenline.model.subscribe;

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

public class HallBean {

    /**
     * id : null
     * createTime : 2017-04-09 02:49:50
     * updateTime : 2017-04-09 02:49:50
     * enabled : 1
     * theatreId : null
     * liveId : 33
     * hallId : 1
     * hallName : 直播1厅
     * hallDesc : 虚拟新增厅描述
     * totalNumber : 500
     * hallSort : 0
     * hallStatus : 0
     */

    private Object id;
    private String createTime;
    private String updateTime;
    private int enabled;
    private Object theatreId;
    private int liveId;
    private long hallId;
    private String hallName;
    private String hallDesc;
    private int totalNumber;
    private int hallSort;
    private int hallStatus;

    public Object getId() {
        return id;
    }

    public void setId(Object id) {
        this.id = id;
    }

    public String getCreateTime() {
        return createTime;
    }

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

    public String getUpdateTime() {
        return updateTime;
    }

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

    public int getEnabled() {
        return enabled;
    }

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

    public Object getTheatreId() {
        return theatreId;
    }

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

    public int getLiveId() {
        return liveId;
    }

    public void setLiveId(int liveId) {
        this.liveId = liveId;
    }

    public long getHallId() {
        return hallId;
    }

    public void setHallId(long hallId) {
        this.hallId = hallId;
    }

    public String getHallName() {
        return hallName;
    }

    public void setHallName(String hallName) {
        this.hallName = hallName;
    }

    public String getHallDesc() {
        return hallDesc;
    }

    public void setHallDesc(String hallDesc) {
        this.hallDesc = hallDesc;
    }

    public int getTotalNumber() {
        return totalNumber;
    }

    public void setTotalNumber(int totalNumber) {
        this.totalNumber = totalNumber;
    }

    public int getHallSort() {
        return hallSort;
    }

    public void setHallSort(int hallSort) {
        this.hallSort = hallSort;
    }

    public int getHallStatus() {
        return hallStatus;
    }

    public void setHallStatus(int hallStatus) {
        this.hallStatus = hallStatus;
    }
}