|
@@ -653,9 +653,9 @@ public class ExamQuestionOuterServiceProvider extends ControllerSupport implemen
|
|
|
//如果小题号相同,则根据相同索引从带题干的集合中取出对应的小题答案
|
|
|
if (collectQuestions.get(i).getSubNumber().intValue() == curSubNumber.intValue()) {
|
|
|
if (QuestionCategory.SUBJECTIVE == questionCategory) {
|
|
|
- return allRightAnswers.get(i);
|
|
|
+ return subjectiveRightAnswers.get(i);
|
|
|
} else if (QuestionCategory.OBJECTIVE == questionCategory) {
|
|
|
- return allRightAnswers.get(i);
|
|
|
+ return objectiveRightAnswers.get(i);
|
|
|
} else {
|
|
|
return allRightAnswers.get(i);
|
|
|
}
|