|
@@ -27,10 +27,10 @@ public class ExamPaperGroup extends BaseEntity implements Serializable {
|
|
|
private Integer groupNumber;
|
|
|
|
|
|
@ApiModelProperty(value = "双评比例(0关闭,1开启) tip : 云阅卷0-1之间是按照百分比人数开启双评,因此这里限制只能0或1")
|
|
|
- private Boolean doubleRate;
|
|
|
+ private Double doubleRate;
|
|
|
|
|
|
@ApiModelProperty(value = "仲裁阈值(开启双评必填)'")
|
|
|
- private Integer arbitrateThreshold;
|
|
|
+ private Double arbitrateThreshold;
|
|
|
|
|
|
@ApiModelProperty(value = "合分策略 开启双评是必填 AVG(\"平均分\", 1), MAX(\"最高分\", 2), MIN(\"最低分\", 3)")
|
|
|
private ScorePolicyEnum scorePolicy;
|
|
@@ -44,6 +44,9 @@ public class ExamPaperGroup extends BaseEntity implements Serializable {
|
|
|
@ApiModelProperty(value = "题目信息")
|
|
|
private String questionInfo;
|
|
|
|
|
|
+ @ApiModelProperty(value = "分组图片设置")
|
|
|
+ private String pictureConfig;
|
|
|
+
|
|
|
public Long getExamPaperStructureId() {
|
|
|
return examPaperStructureId;
|
|
|
}
|
|
@@ -60,19 +63,19 @@ public class ExamPaperGroup extends BaseEntity implements Serializable {
|
|
|
this.groupNumber = groupNumber;
|
|
|
}
|
|
|
|
|
|
- public Boolean getDoubleRate() {
|
|
|
+ public Double getDoubleRate() {
|
|
|
return doubleRate;
|
|
|
}
|
|
|
|
|
|
- public void setDoubleRate(Boolean doubleRate) {
|
|
|
+ public void setDoubleRate(Double doubleRate) {
|
|
|
this.doubleRate = doubleRate;
|
|
|
}
|
|
|
|
|
|
- public Integer getArbitrateThreshold() {
|
|
|
+ public Double getArbitrateThreshold() {
|
|
|
return arbitrateThreshold;
|
|
|
}
|
|
|
|
|
|
- public void setArbitrateThreshold(Integer arbitrateThreshold) {
|
|
|
+ public void setArbitrateThreshold(Double arbitrateThreshold) {
|
|
|
this.arbitrateThreshold = arbitrateThreshold;
|
|
|
}
|
|
|
|
|
@@ -107,4 +110,12 @@ public class ExamPaperGroup extends BaseEntity implements Serializable {
|
|
|
public void setQuestionInfo(String questionInfo) {
|
|
|
this.questionInfo = questionInfo;
|
|
|
}
|
|
|
+
|
|
|
+ public String getPictureConfig() {
|
|
|
+ return pictureConfig;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPictureConfig(String pictureConfig) {
|
|
|
+ this.pictureConfig = pictureConfig;
|
|
|
+ }
|
|
|
}
|