|
@@ -0,0 +1,42 @@
|
|
|
+package com.qmth.cqb.paper.dto;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author weiwenhai
|
|
|
+ * @date 2018.4.19
|
|
|
+ * @company qmth
|
|
|
+ * @describle 主观题可以客观题集合
|
|
|
+ */
|
|
|
+public class QuestionAllTypeDto {
|
|
|
+
|
|
|
+ private List<ObjectiveQuestionStructure> objectiveQuestionStructureList;
|
|
|
+
|
|
|
+ private List<SubjectiveQuestionStructure> subjectiveQuestionStructureList;
|
|
|
+
|
|
|
+ public QuestionAllTypeDto(){}
|
|
|
+
|
|
|
+ public QuestionAllTypeDto(List<ObjectiveQuestionStructure> objectiveQuestionStructureList,List<SubjectiveQuestionStructure> subjectiveQuestionStructureList){
|
|
|
+ this.objectiveQuestionStructureList = objectiveQuestionStructureList;
|
|
|
+ this.subjectiveQuestionStructureList = subjectiveQuestionStructureList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<ObjectiveQuestionStructure> getObjectiveQuestionStructureList() {
|
|
|
+ return objectiveQuestionStructureList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setObjectiveQuestionStructureList(
|
|
|
+ List<ObjectiveQuestionStructure> objectiveQuestionStructureList) {
|
|
|
+ this.objectiveQuestionStructureList = objectiveQuestionStructureList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<SubjectiveQuestionStructure> getSubjectiveQuestionStructureList() {
|
|
|
+ return subjectiveQuestionStructureList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectiveQuestionStructureList(
|
|
|
+ List<SubjectiveQuestionStructure> subjectiveQuestionStructureList) {
|
|
|
+ this.subjectiveQuestionStructureList = subjectiveQuestionStructureList;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|