|
@@ -173,7 +173,32 @@ public class Exam implements Serializable {
|
|
*/
|
|
*/
|
|
@Column(name = "show_reject", nullable = false)
|
|
@Column(name = "show_reject", nullable = false)
|
|
private boolean showReject;
|
|
private boolean showReject;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 全卷多次复核时不能为同一账号
|
|
|
|
+ */
|
|
|
|
+ @Column(name = "inspect_unrepeated", nullable = false)
|
|
|
|
+ private boolean inspectUnrepeated;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 全卷复核时强制试卷拉到底部
|
|
|
|
+ */
|
|
|
|
+ @Column(name = "inspect_scroll_bottom", nullable = false)
|
|
|
|
+ private boolean inspectScrollBottom;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 回评卷数
|
|
|
|
+ */
|
|
|
|
+ @Column(name = "remark_count")
|
|
|
|
+ private Integer remarkCount;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 是否显示客观分
|
|
|
|
+ */
|
|
|
|
+ @Column(name = "show_objective_score", nullable = false)
|
|
|
|
+ private boolean showObjectiveScore;
|
|
|
|
|
|
|
|
+
|
|
public Integer getId() {
|
|
public Integer getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -418,4 +443,36 @@ public class Exam implements Serializable {
|
|
this.showReject = showReject;
|
|
this.showReject = showReject;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Boolean getInspectUnrepeated() {
|
|
|
|
+ return inspectUnrepeated;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setInspectUnrepeated(Boolean inspectUnrepeated) {
|
|
|
|
+ this.inspectUnrepeated = inspectUnrepeated;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getInspectScrollBottom() {
|
|
|
|
+ return inspectScrollBottom;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setInspectScrollBottom(Boolean inspectScrollBottom) {
|
|
|
|
+ this.inspectScrollBottom = inspectScrollBottom;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getRemarkCount() {
|
|
|
|
+ return remarkCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRemarkCount(Integer remarkCount) {
|
|
|
|
+ this.remarkCount = remarkCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getShowObjectiveScore() {
|
|
|
|
+ return showObjectiveScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setShowObjectiveScore(Boolean showObjectiveScore) {
|
|
|
|
+ this.showObjectiveScore = showObjectiveScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|