TheatreScreenRequest.java
470 Bytes
package com.cnlive.goldenline.model.request;
/**
* Description:根据节目请求厅
* Created on 2017/3/30
* Author : 萧
*/
public class TheatreScreenRequest {
private String liveId;
public TheatreScreenRequest() {
}
public TheatreScreenRequest(String liveId) {
this.liveId = liveId;
}
public String getLiveId() {
return liveId;
}
public void setLiveId(String liveId) {
this.liveId = liveId;
}
}