WANG 6 lat temu
rodzic
commit
ffb5dfa184

+ 3 - 4
src/main/java/cn/com/qmth/examcloud/question/core/paper/DefaultQuestionGroup.java

@@ -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() {