TheatreAreaResponse.java
849 Bytes
package com.cnlive.goldenline.model.response;
import com.cnlive.goldenline.model.response.bean.TheatreAreaInfobean;
import java.util.List;
/**
* Description:剧院分区反馈
* Created on 2017/3/30
* Author : 萧
*/
public class TheatreAreaResponse extends ListResponse<TheatreAreaInfobean> {
public TheatreAreaResponse() {
}
public TheatreAreaResponse(int code, String errMsg, List<TheatreAreaInfobean> recordList) {
super(code, errMsg, recordList);
}
@Override
public List<TheatreAreaInfobean> getRecordList() {
return super.getRecordList();
}
@Override
public void setRecordList(List<TheatreAreaInfobean> recordList) {
super.setRecordList(recordList);
}
@Override
public String toString() {
return "TheatreAreaResponse{} " + super.toString();
}
}