|
@@ -1,9 +1,10 @@
|
|
|
package cn.com.qmth.examcloud.support.examing;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
-
|
|
|
import java.util.Date;
|
|
|
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
+import cn.com.qmth.examcloud.support.enums.FreezeTimeType;
|
|
|
+
|
|
|
/**
|
|
|
* 考试会话
|
|
|
*
|
|
@@ -129,6 +130,11 @@ public class ExamingSession implements JsonSerializable {
|
|
|
* 限制切屏次数
|
|
|
*/
|
|
|
private Integer maxSwitchScreenCount;
|
|
|
+
|
|
|
+ private FreezeTimeType freezeTimeType;
|
|
|
+
|
|
|
+ //设置的考试开始时间
|
|
|
+ private Date examStartTime;
|
|
|
|
|
|
public String getKey() {
|
|
|
return key;
|
|
@@ -314,5 +320,21 @@ public class ExamingSession implements JsonSerializable {
|
|
|
this.recordSwitchScreen = recordSwitchScreen;
|
|
|
}
|
|
|
|
|
|
+ public FreezeTimeType getFreezeTimeType() {
|
|
|
+ return freezeTimeType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFreezeTimeType(FreezeTimeType freezeTimeType) {
|
|
|
+ this.freezeTimeType = freezeTimeType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getExamStartTime() {
|
|
|
+ return examStartTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamStartTime(Date examStartTime) {
|
|
|
+ this.examStartTime = examStartTime;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|