TheatreAreaRequest.java 652 Bytes
package com.cnlive.goldenline.model.request;

/**
 * Description:请求区域人数
 * Created on 2017/3/30
 * Author : 萧
 */
public class TheatreAreaRequest {

    private int liveid;

    private int hallid;

    public TheatreAreaRequest() {
    }

    public TheatreAreaRequest(int liveid, int hallid) {
        this.liveid = liveid;
        this.hallid = hallid;
    }

    public int getLiveid() {
        return liveid;
    }

    public void setLiveid(int liveid) {
        this.liveid = liveid;
    }

    public int getHallid() {
        return hallid;
    }

    public void setHallid(int hallid) {
        this.hallid = hallid;
    }
}