|
@@ -114,6 +114,16 @@ public class ExamingSession implements JsonSerializable {
|
|
* 定点交卷的时间
|
|
* 定点交卷的时间
|
|
*/
|
|
*/
|
|
private Date fixedSubmitTime;
|
|
private Date fixedSubmitTime;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 是否计算切屏次数
|
|
|
|
+ */
|
|
|
|
+ private Boolean recordSwitchScreen;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 限制切屏次数
|
|
|
|
+ */
|
|
|
|
+ private Integer maxSwitchScreenCount;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 构建key
|
|
* 构建key
|
|
@@ -286,4 +296,23 @@ public class ExamingSession implements JsonSerializable {
|
|
public void setTimingEnd(boolean timingEnd) {
|
|
public void setTimingEnd(boolean timingEnd) {
|
|
this.timingEnd = timingEnd;
|
|
this.timingEnd = timingEnd;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Integer getMaxSwitchScreenCount() {
|
|
|
|
+ return maxSwitchScreenCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMaxSwitchScreenCount(Integer maxSwitchScreenCount) {
|
|
|
|
+ this.maxSwitchScreenCount = maxSwitchScreenCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getRecordSwitchScreen() {
|
|
|
|
+ return recordSwitchScreen;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRecordSwitchScreen(Boolean recordSwitchScreen) {
|
|
|
|
+ this.recordSwitchScreen = recordSwitchScreen;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|