WANG 6 년 전
부모
커밋
844ecec3d1
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      src/main/java/cn/com/qmth/examcloud/question/commons/core/paper/DefaultQuestionUnitWrapper.java

+ 14 - 0
src/main/java/cn/com/qmth/examcloud/question/commons/core/paper/DefaultQuestionUnitWrapper.java

@@ -2,6 +2,7 @@ package cn.com.qmth.examcloud.question.commons.core.paper;
 
 import java.io.Serializable;
 
+import cn.com.qmth.examcloud.question.commons.core.question.AnswerType;
 import cn.com.qmth.examcloud.question.commons.core.question.QuestionType;
 
 /**
@@ -30,6 +31,11 @@ public class DefaultQuestionUnitWrapper implements Serializable {
 	 */
 	private QuestionType questionType;
 
+	/**
+	 * 作答类型
+	 */
+	private AnswerType answerType;
+
 	public Integer[] getOptionPermutation() {
 		return optionPermutation;
 	}
@@ -54,4 +60,12 @@ public class DefaultQuestionUnitWrapper implements Serializable {
 		this.questionType = questionType;
 	}
 
+	public AnswerType getAnswerType() {
+		return answerType;
+	}
+
+	public void setAnswerType(AnswerType answerType) {
+		this.answerType = answerType;
+	}
+
 }