|
@@ -1,9 +1,6 @@
|
|
|
package cn.com.qmth.examcloud.core.oe.admin.api.response;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.bean.ScoreDataBean;
|
|
|
-
|
|
|
-import java.util.List;
|
|
|
/**
|
|
|
* @Description 获取部分考试记录(根据需求,自行扩展字段)
|
|
|
* @Author lideyin
|
|
@@ -14,6 +11,8 @@ public class GetPartialExamRecordDataResp extends BaseResponse {
|
|
|
private static final long serialVersionUID = -1244321710403489810L;
|
|
|
|
|
|
private Long examStudentId;
|
|
|
+
|
|
|
+ private Boolean illegality;
|
|
|
|
|
|
public Long getExamStudentId() {
|
|
|
return examStudentId;
|
|
@@ -22,4 +21,13 @@ public class GetPartialExamRecordDataResp extends BaseResponse {
|
|
|
public void setExamStudentId(Long examStudentId) {
|
|
|
this.examStudentId = examStudentId;
|
|
|
}
|
|
|
+
|
|
|
+ public Boolean getIllegality() {
|
|
|
+ return illegality;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIllegality(Boolean illegality) {
|
|
|
+ this.illegality = illegality;
|
|
|
+ }
|
|
|
+
|
|
|
}
|