SeatsRequest.java 979 Bytes
package com.cnlive.goldenline.model.request;

/**
 * description:获取已近选取的座位信息的请求bean
 * Created by Sivin on 2017/4/8.
 */

public class SeatsRequest {

    /**
     * 直播 ID
     */
    private String liveId;

    /**
     * 大厅ID
     */
    private Long hallId;

    /**
     * 区ID
     */
    private String areaId;

    public SeatsRequest() {
    }

    public SeatsRequest(String liveId, Long hallId, String areaId) {
        this.liveId = liveId;
        this.hallId = hallId;
        this.areaId = areaId;
    }

    public String getLiveId() {
        return liveId;
    }

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

    public Long getHallId() {
        return hallId;
    }

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

    public String getAreaId() {
        return areaId;
    }

    public void setAreaId(String areaId) {
        this.areaId = areaId;
    }
}