|
@@ -58,7 +58,7 @@ public class MarkQuestion implements Serializable {
|
|
@ApiModelProperty(value = "正确答案")
|
|
@ApiModelProperty(value = "正确答案")
|
|
private String answer;
|
|
private String answer;
|
|
@ApiModelProperty(value = "客观题答案数量")
|
|
@ApiModelProperty(value = "客观题答案数量")
|
|
- private String optionCount;
|
|
|
|
|
|
+ private Integer optionCount;
|
|
|
|
|
|
@ApiModelProperty(value = "满分")
|
|
@ApiModelProperty(value = "满分")
|
|
private Double totalScore;
|
|
private Double totalScore;
|
|
@@ -152,11 +152,11 @@ public class MarkQuestion implements Serializable {
|
|
this.answer = answer;
|
|
this.answer = answer;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getOptionCount() {
|
|
|
|
|
|
+ public Integer getOptionCount() {
|
|
return optionCount;
|
|
return optionCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setOptionCount(String optionCount) {
|
|
|
|
|
|
+ public void setOptionCount(Integer optionCount) {
|
|
this.optionCount = optionCount;
|
|
this.optionCount = optionCount;
|
|
}
|
|
}
|
|
|
|
|