|
@@ -1,5 +1,6 @@
|
|
package cn.com.qmth.examcloud.core.oe.student.bean;
|
|
package cn.com.qmth.examcloud.core.oe.student.bean;
|
|
|
|
|
|
|
|
+import cn.com.qmth.examcloud.api.commons.enums.ExamType;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
public class CheckExamInProgressInfo implements JsonSerializable{
|
|
public class CheckExamInProgressInfo implements JsonSerializable{
|
|
@@ -29,6 +30,11 @@ public class CheckExamInProgressInfo implements JsonSerializable{
|
|
* 活体检测启动分钟数
|
|
* 活体检测启动分钟数
|
|
*/
|
|
*/
|
|
private Integer faceVerifyMinute;
|
|
private Integer faceVerifyMinute;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 考试类型
|
|
|
|
+ */
|
|
|
|
+ private ExamType examType;
|
|
|
|
|
|
public Long getExamRecordDataId() {
|
|
public Long getExamRecordDataId() {
|
|
return examRecordDataId;
|
|
return examRecordDataId;
|
|
@@ -86,4 +92,14 @@ public class CheckExamInProgressInfo implements JsonSerializable{
|
|
this.isExceed = isExceed;
|
|
this.isExceed = isExceed;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ public ExamType getExamType() {
|
|
|
|
+ return examType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public void setExamType(ExamType examType) {
|
|
|
|
+ this.examType = examType;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|