|
@@ -64,9 +64,9 @@ public class TOeExamRecord implements Serializable {
|
|
|
@TableField(value = "last_start_time")
|
|
|
private Date lastStartTime;
|
|
|
|
|
|
- @ApiModelProperty(value = "剩余断点续考次数")
|
|
|
- @TableField(value = "left_break_resume_count")
|
|
|
- private Integer leftBreakResumeCount;
|
|
|
+ @ApiModelProperty(value = "已断点续考次数")
|
|
|
+ @TableField(value = "already_break_count")
|
|
|
+ private Integer alreadyBreakCount;
|
|
|
|
|
|
@ApiModelProperty(value = "客户端当前IP地址")
|
|
|
@TableField(value = "client_current_ip")
|
|
@@ -171,6 +171,31 @@ public class TOeExamRecord implements Serializable {
|
|
|
@ApiModelProperty(value = "算分状态,never:从未算分,calculating:正在算分,finish:算分完成")
|
|
|
@TableField(value = "score_status")
|
|
|
private ScoreStatusEnum scoreStatus;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考试开始时间")
|
|
|
+ @TableField(value = "start_time")
|
|
|
+ private Date startTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考试结束时间")
|
|
|
+ @TableField(value = "end_time")
|
|
|
+ private Date endTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "允许开考开放时长,相当于迟到时间")
|
|
|
+ @TableField(value = "opening_seconds")
|
|
|
+ private Integer openingSeconds;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "最短考试时长,相当于考试冻结时间")
|
|
|
+ @TableField(value = "min_duration_seconds")
|
|
|
+ private Integer minDurationSeconds;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "最大考试时长")
|
|
|
+ @TableField(value = "max_duration_seconds")
|
|
|
+ private Integer maxDurationSeconds;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否在结束时间集中强制收卷,0:不强制,1:强制")
|
|
|
+ @TableField(value = "force_finish")
|
|
|
+ private Integer forceFinish;
|
|
|
|
|
|
public ScoreStatusEnum getScoreStatus() {
|
|
|
return scoreStatus;
|
|
@@ -296,13 +321,6 @@ public class TOeExamRecord implements Serializable {
|
|
|
this.lastStartTime = lastStartTime;
|
|
|
}
|
|
|
|
|
|
- public Integer getLeftBreakResumeCount() {
|
|
|
- return leftBreakResumeCount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLeftBreakResumeCount(Integer leftBreakResumeCount) {
|
|
|
- this.leftBreakResumeCount = leftBreakResumeCount;
|
|
|
- }
|
|
|
|
|
|
public String getClientCurrentIp() {
|
|
|
return clientCurrentIp;
|
|
@@ -479,4 +497,62 @@ public class TOeExamRecord implements Serializable {
|
|
|
public void setInProcessLivenessVerifyCount(Integer inProcessLivenessVerifyCount) {
|
|
|
this.inProcessLivenessVerifyCount = inProcessLivenessVerifyCount;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getAlreadyBreakCount() {
|
|
|
+ return alreadyBreakCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAlreadyBreakCount(Integer alreadyBreakCount) {
|
|
|
+ this.alreadyBreakCount = alreadyBreakCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getStartTime() {
|
|
|
+ return startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
+ this.startTime = startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getEndTime() {
|
|
|
+ return endTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndTime(Date endTime) {
|
|
|
+ this.endTime = endTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOpeningSeconds() {
|
|
|
+ return openingSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOpeningSeconds(Integer openingSeconds) {
|
|
|
+ this.openingSeconds = openingSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMinDurationSeconds() {
|
|
|
+ return minDurationSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMinDurationSeconds(Integer minDurationSeconds) {
|
|
|
+ this.minDurationSeconds = minDurationSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMaxDurationSeconds() {
|
|
|
+ return maxDurationSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxDurationSeconds(Integer maxDurationSeconds) {
|
|
|
+ this.maxDurationSeconds = maxDurationSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getForceFinish() {
|
|
|
+ return forceFinish;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setForceFinish(Integer forceFinish) {
|
|
|
+ this.forceFinish = forceFinish;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|