|
@@ -15,13 +15,13 @@ import com.qmth.themis.business.enums.ScoreStatusEnum;
|
|
|
|
|
|
public class ExamCacheBean implements Serializable {
|
|
|
|
|
|
- /**
|
|
|
- *
|
|
|
- */
|
|
|
- private static final long serialVersionUID = -1544653057729256077L;
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = -1544653057729256077L;
|
|
|
|
|
|
- //主键
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ //主键
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long id;
|
|
|
|
|
|
//创建人id
|
|
@@ -37,8 +37,8 @@ public class ExamCacheBean implements Serializable {
|
|
|
|
|
|
//修改时间
|
|
|
private Long updateTime;
|
|
|
-
|
|
|
- //机构ID
|
|
|
+
|
|
|
+ //机构ID
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long orgId;
|
|
|
|
|
@@ -163,7 +163,7 @@ public class ExamCacheBean implements Serializable {
|
|
|
|
|
|
//监考人工审核,now:实时审核,later:事后审核
|
|
|
private InvigilateVerifyEnum invigilateVerify;
|
|
|
-
|
|
|
+
|
|
|
//监考状态,NOT_START:未开始,START:监考中,FINISHED:已结束
|
|
|
private InvigilateMonitorStatusEnum monitorStatus;
|
|
|
|
|
@@ -447,7 +447,7 @@ public class ExamCacheBean implements Serializable {
|
|
|
}
|
|
|
|
|
|
public Integer getExamCount() {
|
|
|
- return examCount;
|
|
|
+ return examCount == null ? 0 : examCount;
|
|
|
}
|
|
|
|
|
|
public void setExamCount(Integer examCount) {
|
|
@@ -502,29 +502,29 @@ public class ExamCacheBean implements Serializable {
|
|
|
this.objectiveScorePolicy = objectiveScorePolicy;
|
|
|
}
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
|
|
|
- public Long getCreateId() {
|
|
|
- return createId;
|
|
|
- }
|
|
|
+ public Long getCreateId() {
|
|
|
+ return createId;
|
|
|
+ }
|
|
|
|
|
|
- public void setCreateId(Long createId) {
|
|
|
- this.createId = createId;
|
|
|
- }
|
|
|
+ public void setCreateId(Long createId) {
|
|
|
+ this.createId = createId;
|
|
|
+ }
|
|
|
|
|
|
- public Long getUpdateId() {
|
|
|
- return updateId;
|
|
|
- }
|
|
|
+ public Long getUpdateId() {
|
|
|
+ return updateId;
|
|
|
+ }
|
|
|
|
|
|
- public void setUpdateId(Long updateId) {
|
|
|
- this.updateId = updateId;
|
|
|
- }
|
|
|
+ public void setUpdateId(Long updateId) {
|
|
|
+ this.updateId = updateId;
|
|
|
+ }
|
|
|
|
|
|
public Long getCreateTime() {
|
|
|
return createTime;
|
|
@@ -558,13 +558,13 @@ public class ExamCacheBean implements Serializable {
|
|
|
this.endTime = endTime;
|
|
|
}
|
|
|
|
|
|
- public InvigilateMonitorStatusEnum getMonitorStatus() {
|
|
|
- return monitorStatus;
|
|
|
- }
|
|
|
+ public InvigilateMonitorStatusEnum getMonitorStatus() {
|
|
|
+ return monitorStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMonitorStatus(InvigilateMonitorStatusEnum monitorStatus) {
|
|
|
+ this.monitorStatus = monitorStatus;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
- public void setMonitorStatus(InvigilateMonitorStatusEnum monitorStatus) {
|
|
|
- this.monitorStatus = monitorStatus;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
}
|