|
@@ -1,21 +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.commons.web.cloud.api.BaseResponse;
|
|
import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
-import cn.com.qmth.examcloud.commons.web.helpers.page.PageInfo;
|
|
|
|
import cn.com.qmth.examcloud.examwork.api.bean.ExamStudentBean;
|
|
import cn.com.qmth.examcloud.examwork.api.bean.ExamStudentBean;
|
|
|
|
|
|
public class GetExamStudentPageResp extends BaseResponse {
|
|
public class GetExamStudentPageResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = -3834785572724803553L;
|
|
private static final long serialVersionUID = -3834785572724803553L;
|
|
|
|
|
|
- PageInfo<ExamStudentBean> pageInfo;
|
|
|
|
|
|
+ List<ExamStudentBean> list;
|
|
|
|
+
|
|
|
|
+ private Long total;
|
|
|
|
+
|
|
|
|
+ public List<ExamStudentBean> getList() {
|
|
|
|
+ return list;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setList(List<ExamStudentBean> list) {
|
|
|
|
+ this.list = list;
|
|
|
|
+ }
|
|
|
|
|
|
- public PageInfo<ExamStudentBean> getPageInfo() {
|
|
|
|
- return pageInfo;
|
|
|
|
|
|
+ public Long getTotal() {
|
|
|
|
+ return total;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPageInfo(PageInfo<ExamStudentBean> pageInfo) {
|
|
|
|
- this.pageInfo = pageInfo;
|
|
|
|
|
|
+ public void setTotal(Long total) {
|
|
|
|
+ this.total = total;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|