|
@@ -0,0 +1,63 @@
|
|
|
+package com.qmth.themis.business.dto.response;
|
|
|
+
|
|
|
+import com.qmth.themis.business.entity.TEConfig;
|
|
|
+import com.qmth.themis.business.entity.TEStudent;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+* @Description: 考试返回
|
|
|
+* @Param:
|
|
|
+* @return:
|
|
|
+* @Author: wangliang
|
|
|
+* @Date: 2020/8/3
|
|
|
+*/
|
|
|
+public class TEExamResultDto implements Serializable {
|
|
|
+
|
|
|
+ private TEExamDto waiting;
|
|
|
+ private List<TEExamActivityDto> activities;
|
|
|
+ private TEExamActivityDto activity;
|
|
|
+ private TEStudent student;
|
|
|
+ private TEConfig global;
|
|
|
+
|
|
|
+ public TEExamDto getWaiting() {
|
|
|
+ return waiting;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWaiting(TEExamDto waiting) {
|
|
|
+ this.waiting = waiting;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<TEExamActivityDto> getActivities() {
|
|
|
+ return activities;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivities(List<TEExamActivityDto> activities) {
|
|
|
+ this.activities = activities;
|
|
|
+ }
|
|
|
+
|
|
|
+ public TEExamActivityDto getActivity() {
|
|
|
+ return activity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivity(TEExamActivityDto activity) {
|
|
|
+ this.activity = activity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public TEStudent getStudent() {
|
|
|
+ return student;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudent(TEStudent student) {
|
|
|
+ this.student = student;
|
|
|
+ }
|
|
|
+
|
|
|
+ public TEConfig getGlobal() {
|
|
|
+ return global;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGlobal(TEConfig global) {
|
|
|
+ this.global = global;
|
|
|
+ }
|
|
|
+}
|