|
@@ -0,0 +1,27 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.bean.ExamRecordDataBean;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description 同步考试记录请求类
|
|
|
+ * @Author lideyin
|
|
|
+ * @Date 2019/12/20 8:47
|
|
|
+ * @Version 1.0
|
|
|
+ */
|
|
|
+public class SyncExamDataReq extends BaseRequest {
|
|
|
+ private static final long serialVersionUID = -6468655557697004398L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 考试记录实体
|
|
|
+ */
|
|
|
+ private ExamRecordDataBean examRecordData;
|
|
|
+
|
|
|
+ public ExamRecordDataBean getExamRecordData() {
|
|
|
+ return examRecordData;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamRecordData(ExamRecordDataBean examRecordData) {
|
|
|
+ this.examRecordData = examRecordData;
|
|
|
+ }
|
|
|
+}
|