|
@@ -21,7 +21,7 @@ public class DefaultQuestionGroup implements QuestionGroup {
|
|
|
/**
|
|
|
* 题包装器集合
|
|
|
*/
|
|
|
- private List<DefaultQuestionWrapper> QuestionWrapperList;
|
|
|
+ private List<DefaultQuestionStructureWrapper> QuestionWrapperList;
|
|
|
|
|
|
/**
|
|
|
* 题组总分
|
|
@@ -39,11 +39,11 @@ public class DefaultQuestionGroup implements QuestionGroup {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<? extends QuestionWrapper> getQuestionWrapperList() {
|
|
|
+ public List<? extends QuestionStructureWrapper> getQuestionWrapperList() {
|
|
|
return QuestionWrapperList;
|
|
|
}
|
|
|
|
|
|
- public void setQuestionWrapperList(List<DefaultQuestionWrapper> questionWrapperList) {
|
|
|
+ public void setQuestionWrapperList(List<DefaultQuestionStructureWrapper> questionWrapperList) {
|
|
|
QuestionWrapperList = questionWrapperList;
|
|
|
}
|
|
|
|