|
@@ -268,15 +268,15 @@ public class ExtractConfigProviderServiceImpl implements ExtractConfigProviderSe
|
|
|
DefaultQuestionUnitWrapper defaultQuestionUnitWrapper = buildQuesUnitWrapper(paperDetailUnit.getQuestion(),paperDetailUnit.getScore());
|
|
|
defaultQuestionUnitWrappers.add(defaultQuestionUnitWrapper);
|
|
|
}
|
|
|
- defaultQuestionStructureWrapper.setQuestionUnitWrapperList(defaultQuestionUnitWrappers);
|
|
|
+ defaultQuestionStructureWrapper.setDefaultQuestionUnitWrapperList(defaultQuestionUnitWrappers);
|
|
|
questionWrapperList.add(defaultQuestionStructureWrapper);
|
|
|
}
|
|
|
- defaultQuestionGroup.setQuestionWrapperList(questionWrapperList);
|
|
|
+ defaultQuestionGroup.setDefaultQuestionStructureWrapperList(questionWrapperList);
|
|
|
questionGroupList.add(defaultQuestionGroup);
|
|
|
}
|
|
|
DefaultPaper defaultPaper = new DefaultPaper();
|
|
|
defaultPaper.setName(basePaper.getName());
|
|
|
- defaultPaper.setQuestionGroupList(questionGroupList);
|
|
|
+ defaultPaper.setDefaultQuestionGroupList(questionGroupList);
|
|
|
defaultPaper.setFullyObjective(fullyObjective);
|
|
|
return defaultPaper;
|
|
|
}
|
|
@@ -364,7 +364,7 @@ public class ExtractConfigProviderServiceImpl implements ExtractConfigProviderSe
|
|
|
DefaultQuestionUnit defaultQuestionUnit = buildQuestionUnit(question);
|
|
|
questionUnitList.add(defaultQuestionUnit);
|
|
|
}
|
|
|
- defaultQuestionStructure.setQuestionUnitList(questionUnitList);
|
|
|
+ defaultQuestionStructure.setDefaultQuestionUnitList(questionUnitList);
|
|
|
DefaultQuestion defaultQuestion = new DefaultQuestion();
|
|
|
defaultQuestion.setId(questionId);
|
|
|
defaultQuestion.setMasterVersion(defaultQuestionStructure);
|
|
@@ -401,7 +401,7 @@ public class ExtractConfigProviderServiceImpl implements ExtractConfigProviderSe
|
|
|
defaultQuestionOptions.add(defaultQuestionOption);
|
|
|
}
|
|
|
}
|
|
|
- defaultQuestionUnit.setQuestionOptionList(defaultQuestionOptions);
|
|
|
+ defaultQuestionUnit.setDefaultQuestionOptionList(defaultQuestionOptions);
|
|
|
defaultQuestionUnit.setRightAnswer(getSelectQuestionAnswer(quesOptions));
|
|
|
}else {
|
|
|
defaultQuestionUnit.setRightAnswer(getAnswer(question));
|