weiwenhai преди 7 години
родител
ревизия
954545c61c
променени са 1 файла, в които са добавени 42 реда и са изтрити 0 реда
  1. 42 0
      cqb-paper/src/main/java/com/qmth/cqb/paper/dto/QuestionAllTypeDto.java

+ 42 - 0
cqb-paper/src/main/java/com/qmth/cqb/paper/dto/QuestionAllTypeDto.java

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