TheatreInfoRequest.java 1.08 KB
package com.cnlive.goldenline.model.request;

/**
 * Description:请求剧院信息
 * Created on 2017/4/1
 * Author : 萧
 */
public class TheatreInfoRequest {

    int type;
    String showId;
    String theatreId;

    public TheatreInfoRequest() {
    }

    public TheatreInfoRequest(int type, String showId, String theatreId) {
        this.type = type;
        this.showId = showId;
        this.theatreId = theatreId;
    }

    public int getType() {
        return type;
    }

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

    public String getShowId() {
        return showId;
    }

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

    public String getTheatreId() {
        return theatreId;
    }

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

    @Override
    public String toString() {
        return "TheatreInfoRequest{" +
                "type=" + type +
                ", showId='" + showId + '\'' +
                ", theatreId='" + theatreId + '\'' +
                '}';
    }
}