|
@@ -55,6 +55,8 @@ public class MarkQuestion implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "正确答案")
|
|
@ApiModelProperty(value = "正确答案")
|
|
private String answer;
|
|
private String answer;
|
|
|
|
+ @ApiModelProperty(value = "客观题答案数量")
|
|
|
|
+ private String optionCount;
|
|
|
|
|
|
@ApiModelProperty(value = "满分")
|
|
@ApiModelProperty(value = "满分")
|
|
private Double totalScore;
|
|
private Double totalScore;
|
|
@@ -137,6 +139,15 @@ public class MarkQuestion implements Serializable {
|
|
public void setAnswer(String answer) {
|
|
public void setAnswer(String answer) {
|
|
this.answer = answer;
|
|
this.answer = answer;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getOptionCount() {
|
|
|
|
+ return optionCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOptionCount(String optionCount) {
|
|
|
|
+ this.optionCount = optionCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Double getTotalScore() {
|
|
public Double getTotalScore() {
|
|
return totalScore;
|
|
return totalScore;
|
|
}
|
|
}
|