|
@@ -21,9 +21,8 @@ public class DefaultQuestionGroup implements Serializable {
|
|
|
|
|
|
/**
|
|
|
* 题包装器集合<br>
|
|
|
- * 属性名首字母要改小写.已入库,不便修改
|
|
|
*/
|
|
|
- private List<DefaultQuestionStructureWrapper> QuestionWrapperList;
|
|
|
+ private List<DefaultQuestionStructureWrapper> questionWrapperList;
|
|
|
|
|
|
/**
|
|
|
* 题组总分
|
|
@@ -39,11 +38,11 @@ public class DefaultQuestionGroup implements Serializable {
|
|
|
}
|
|
|
|
|
|
public List<DefaultQuestionStructureWrapper> getQuestionWrapperList() {
|
|
|
- return QuestionWrapperList;
|
|
|
+ return questionWrapperList;
|
|
|
}
|
|
|
|
|
|
public void setQuestionWrapperList(List<DefaultQuestionStructureWrapper> questionWrapperList) {
|
|
|
- QuestionWrapperList = questionWrapperList;
|
|
|
+ this.questionWrapperList = questionWrapperList;
|
|
|
}
|
|
|
|
|
|
public Double getGroupScore() {
|