|
@@ -14,16 +14,13 @@ import javax.persistence.Table;
|
|
|
import javax.persistence.Temporal;
|
|
|
import javax.persistence.TemporalType;
|
|
|
|
|
|
+import cn.com.qmth.stmms.common.enums.*;
|
|
|
import net.sf.json.JSONObject;
|
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
|
import cn.com.qmth.stmms.biz.file.enums.FormatType;
|
|
|
import cn.com.qmth.stmms.biz.mark.model.PictureConfigItem;
|
|
|
-import cn.com.qmth.stmms.common.enums.ExamStatus;
|
|
|
-import cn.com.qmth.stmms.common.enums.ExamType;
|
|
|
-import cn.com.qmth.stmms.common.enums.MarkMode;
|
|
|
-import cn.com.qmth.stmms.common.enums.ObjectiveStatus;
|
|
|
|
|
|
/**
|
|
|
*
|
|
@@ -208,6 +205,13 @@ public class Exam implements Serializable {
|
|
|
@Column(name = "inspect_round_limit", nullable = false)
|
|
|
private boolean inspectRoundLimit;
|
|
|
|
|
|
+ /**
|
|
|
+ * 轨迹次数规则
|
|
|
+ */
|
|
|
+ @Column(name = "track_count_policy", nullable = true, length = 16)
|
|
|
+ @Enumerated(EnumType.STRING)
|
|
|
+ private TrackCountPolicy trackCountPolicy;
|
|
|
+
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
@@ -493,4 +497,11 @@ public class Exam implements Serializable {
|
|
|
this.inspectRoundLimit = inspectRoundLimit;
|
|
|
}
|
|
|
|
|
|
+ public TrackCountPolicy getTrackCountPolicy() {
|
|
|
+ return trackCountPolicy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTrackCountPolicy(TrackCountPolicy trackCountPolicy) {
|
|
|
+ this.trackCountPolicy = trackCountPolicy;
|
|
|
+ }
|
|
|
}
|