TheatreInfoBean.java 4.55 KB
package com.cnlive.goldenline.model.home;

import java.io.Serializable;

/**
 * Description:剧院信息
 * Created on 2017/3/16
 * Author : 萧
 */
public class TheatreInfoBean implements Serializable {
    private int id;

    private String createTime;

    private String updateTime;

    private int enabled;

    private String theatreName;

    private String theatreEname;

    private String theatreDesc;

    private String theatreImg;

    private String theatreAddress;

    private String theatrePhone;

    private String theatreContacts;

    private String theatreLog;

    private String theatreLat;

    private int state;

    public TheatreInfoBean() {
    }

    public TheatreInfoBean(int id, String createTime, String updateTime, int enabled, String theatreName, String theatreEname, String theatreDesc, String theatreImg, String theatreAddress, String theatrePhone, String theatreContacts, String theatreLog, String theatreLat, int state) {
        this.id = id;
        this.createTime = createTime;
        this.updateTime = updateTime;
        this.enabled = enabled;
        this.theatreName = theatreName;
        this.theatreEname = theatreEname;
        this.theatreDesc = theatreDesc;
        this.theatreImg = theatreImg;
        this.theatreAddress = theatreAddress;
        this.theatrePhone = theatrePhone;
        this.theatreContacts = theatreContacts;
        this.theatreLog = theatreLog;
        this.theatreLat = theatreLat;
        this.state = state;
    }

    public int getId() {
        return id;
    }

    public void setId(int 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 String getTheatreName() {
        return theatreName;
    }

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

    public String getTheatreEname() {
        return theatreEname;
    }

    public void setTheatreEname(String theatreEname) {
        this.theatreEname = theatreEname;
    }

    public String getTheatreDesc() {
        return theatreDesc;
    }

    public void setTheatreDesc(String theatreDesc) {
        this.theatreDesc = theatreDesc;
    }

    public String getTheatreImg() {
        return theatreImg;
    }

    public void setTheatreImg(String theatreImg) {
        this.theatreImg = theatreImg;
    }

    public String getTheatreAddress() {
        return theatreAddress;
    }

    public void setTheatreAddress(String theatreAddress) {
        this.theatreAddress = theatreAddress;
    }

    public String getTheatrePhone() {
        return theatrePhone;
    }

    public void setTheatrePhone(String theatrePhone) {
        this.theatrePhone = theatrePhone;
    }

    public String getTheatreContacts() {
        return theatreContacts;
    }

    public void setTheatreContacts(String theatreContacts) {
        this.theatreContacts = theatreContacts;
    }

    public String getTheatreLog() {
        return theatreLog;
    }

    public void setTheatreLog(String theatreLog) {
        this.theatreLog = theatreLog;
    }

    public String getTheatreLat() {
        return theatreLat;
    }

    public void setTheatreLat(String theatreLat) {
        this.theatreLat = theatreLat;
    }

    public int getState() {
        return state;
    }

    public void setState(int state) {
        this.state = state;
    }

    @Override
    public String toString() {
        return "TheatreInfoBean{" +
                "id=" + id +
                ", createTime='" + createTime + '\'' +
                ", updateTime='" + updateTime + '\'' +
                ", enabled=" + enabled +
                ", theatreName='" + theatreName + '\'' +
                ", theatreEname='" + theatreEname + '\'' +
                ", theatreDesc='" + theatreDesc + '\'' +
                ", theatreImg='" + theatreImg + '\'' +
                ", theatreAddress='" + theatreAddress + '\'' +
                ", theatrePhone='" + theatrePhone + '\'' +
                ", theatreContacts='" + theatreContacts + '\'' +
                ", theatreLog='" + theatreLog + '\'' +
                ", theatreLat='" + theatreLat + '\'' +
                ", state=" + state +
                '}';
    }
}