|
@@ -13,7 +13,7 @@ public class QuestionAnswerBean implements Serializable {
|
|
|
/**
|
|
|
* 正确答案
|
|
|
*/
|
|
|
- private List<String> rightAnswer;
|
|
|
+ private List<String> rightAnswers;
|
|
|
|
|
|
public String getQuestionId() {
|
|
|
return questionId;
|
|
@@ -23,12 +23,12 @@ public class QuestionAnswerBean implements Serializable {
|
|
|
this.questionId = questionId;
|
|
|
}
|
|
|
|
|
|
- public List<String> getRightAnswer() {
|
|
|
- return rightAnswer;
|
|
|
+ public List<String> getRightAnswers() {
|
|
|
+ return rightAnswers;
|
|
|
}
|
|
|
|
|
|
- public void setRightAnswer(List<String> rightAnswer) {
|
|
|
- this.rightAnswer = rightAnswer;
|
|
|
+ public void setRightAnswers(List<String> rightAnswers) {
|
|
|
+ this.rightAnswers = rightAnswers;
|
|
|
}
|
|
|
|
|
|
}
|