|
@@ -1,12 +1,13 @@
|
|
|
package com.qmth.themis.business.entity;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.qmth.themis.business.base.BaseEntity;
|
|
|
+
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
/**
|
|
|
* @Description: 考试批次
|
|
|
* @Param:
|
|
@@ -186,6 +187,10 @@ public class TEExam extends BaseEntity {
|
|
|
@TableField(value = "enable_break")
|
|
|
private Integer enableBreak;
|
|
|
|
|
|
+ @ApiModelProperty(value = "客观题给分策略,0:全对给分,1: 漏选给一半分")
|
|
|
+ @TableField(value = "objective_score_policy")
|
|
|
+ private Integer objectiveScorePolicy;
|
|
|
+
|
|
|
public Integer getEnableBreak() {
|
|
|
return enableBreak;
|
|
|
}
|
|
@@ -526,4 +531,14 @@ public class TEExam extends BaseEntity {
|
|
|
this.showObjectiveScore = showObjectiveScore;
|
|
|
}
|
|
|
|
|
|
+ public Integer getObjectiveScorePolicy() {
|
|
|
+ return objectiveScorePolicy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setObjectiveScorePolicy(Integer objectiveScorePolicy) {
|
|
|
+ this.objectiveScorePolicy = objectiveScorePolicy;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|