wangwei 6 年 前
コミット
e185d0e54e

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

@@ -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;
 	}
 

+ 5 - 2
src/main/java/cn/com/qmth/examcloud/question/core/paper/DefaultQuestionWrapper.java → src/main/java/cn/com/qmth/examcloud/question/core/paper/DefaultQuestionStructureWrapper.java

@@ -3,13 +3,13 @@ package cn.com.qmth.examcloud.question.core.paper;
 import java.util.List;
 
 /**
- * 题包装器
+ * 题结构包装器
  *
  * @author WANGWEI
  * @date 2018年8月15日
  * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
  */
-public class DefaultQuestionWrapper implements QuestionWrapper {
+public class DefaultQuestionStructureWrapper implements QuestionStructureWrapper {
 
 	/**
 	 * 题ID
@@ -21,6 +21,9 @@ public class DefaultQuestionWrapper implements QuestionWrapper {
 	 */
 	private Float questionScore;
 
+	/**
+	 * 题单元包装器
+	 */
 	private List<DefaultQuestionUnitWrapper> questionUnitWrapperList;
 
 	@Override

+ 1 - 1
src/main/java/cn/com/qmth/examcloud/question/core/paper/QuestionGroup.java

@@ -34,7 +34,7 @@ public interface QuestionGroup extends Serializable {
 	 * @author WANGWEI
 	 * @return
 	 */
-	public List<? extends QuestionWrapper> getQuestionWrapperList();
+	public List<? extends QuestionStructureWrapper> getQuestionWrapperList();
 
 	/**
 	 * 获取题组总分

+ 2 - 2
src/main/java/cn/com/qmth/examcloud/question/core/paper/QuestionWrapper.java → src/main/java/cn/com/qmth/examcloud/question/core/paper/QuestionStructureWrapper.java

@@ -3,13 +3,13 @@ package cn.com.qmth.examcloud.question.core.paper;
 import java.util.List;
 
 /**
- * 题包装器
+ * 题结构包装器
  *
  * @author WANGWEI
  * @date 2018年8月15日
  * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
  */
-public interface QuestionWrapper {
+public interface QuestionStructureWrapper {
 
 	/**
 	 * 获取体ID