|
@@ -1,9 +1,22 @@
|
|
|
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.examwork.api.bean.ExamStudentBean;
|
|
|
|
|
|
public class ResetExamStudentResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = -1567619951983625553L;
|
|
|
|
|
|
+ private List<ExamStudentBean> examStudentList;
|
|
|
+
|
|
|
+ public List<ExamStudentBean> getExamStudentList() {
|
|
|
+ return examStudentList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamStudentList(List<ExamStudentBean> examStudentList) {
|
|
|
+ this.examStudentList = examStudentList;
|
|
|
+ }
|
|
|
+
|
|
|
}
|