|
@@ -0,0 +1,41 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.student.api.response;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
|
|
|
+
|
|
|
+public class GetExamSessionInfoResp extends BaseResponse{
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = -1827508359397025274L;
|
|
|
+ /**
|
|
|
+ * 考试记录ID
|
|
|
+ */
|
|
|
+ private Long examRecordId;
|
|
|
+ /**
|
|
|
+ * 考试记录DataID
|
|
|
+ */
|
|
|
+ private Long examRecordDataId;
|
|
|
+ /**
|
|
|
+ * 考生ID
|
|
|
+ */
|
|
|
+ private Long examStudentId;
|
|
|
+ public Long getExamRecordId() {
|
|
|
+ return examRecordId;
|
|
|
+ }
|
|
|
+ public void setExamRecordId(Long examRecordId) {
|
|
|
+ this.examRecordId = examRecordId;
|
|
|
+ }
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
+ return examRecordDataId;
|
|
|
+ }
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
+ }
|
|
|
+ public Long getExamStudentId() {
|
|
|
+ return examStudentId;
|
|
|
+ }
|
|
|
+ public void setExamStudentId(Long examStudentId) {
|
|
|
+ this.examStudentId = examStudentId;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|