SubTheatreInfoRequest.java 1.06 KB
package com.cnlive.goldenline.model.request;

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

    int type;
    String userId;
    String showId;

    public SubTheatreInfoRequest() {
    }

    public SubTheatreInfoRequest(int type, String userId, String showId) {
        this.type = type;
        this.userId = userId;
        this.showId = showId;
    }

    public int getType() {
        return type;
    }

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

    public String getUserId() {
        return userId;
    }

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

    public String getShowId() {
        return showId;
    }

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

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