|
@@ -0,0 +1,28 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.student.face.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 清理考试中的考试记录
|
|
|
+ */
|
|
|
+public class SaveExamCaptureSyncCompareResultReq extends BaseRequest {
|
|
|
+ private static final long serialVersionUID = -6717698237605934610L;
|
|
|
+ private Long studentId;
|
|
|
+ private Long examRecordDataId;
|
|
|
+
|
|
|
+ public Long getStudentId() {
|
|
|
+ return studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentId(Long studentId) {
|
|
|
+ this.studentId = studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
+ return examRecordDataId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
+ }
|
|
|
+}
|