|
@@ -1,9 +1,32 @@
|
|
package cn.com.qmth.examcloud.examwork.api.response;
|
|
package cn.com.qmth.examcloud.examwork.api.response;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
|
|
|
|
+import cn.com.qmth.examcloud.examwork.api.bean.ExamBean;
|
|
|
|
|
|
public class GetExamsResp extends BaseResponse {
|
|
public class GetExamsResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = 8427775553678919877L;
|
|
private static final long serialVersionUID = 8427775553678919877L;
|
|
|
|
|
|
|
|
+ private long next;
|
|
|
|
+
|
|
|
|
+ private List<ExamBean> examBeanList;
|
|
|
|
+
|
|
|
|
+ public long getNext() {
|
|
|
|
+ return next;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setNext(long next) {
|
|
|
|
+ this.next = next;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<ExamBean> getExamBeanList() {
|
|
|
|
+ return examBeanList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamBeanList(List<ExamBean> examBeanList) {
|
|
|
|
+ this.examBeanList = examBeanList;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|