Browse Source

题库新文件提交

weiwenhai 7 years ago
parent
commit
954545c61c

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