|
@@ -1,9 +1,21 @@
|
|
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;
|
|
|
|
|
|
public class UnlockExamStudentsResp extends BaseResponse {
|
|
public class UnlockExamStudentsResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = -3808667043727866238L;
|
|
private static final long serialVersionUID = -3808667043727866238L;
|
|
|
|
|
|
|
|
+ private List<Long> examIdList;
|
|
|
|
+
|
|
|
|
+ public List<Long> getExamIdList() {
|
|
|
|
+ return examIdList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamIdList(List<Long> examIdList) {
|
|
|
|
+ this.examIdList = examIdList;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|