|
@@ -1,18 +1,17 @@
|
|
|
package cn.com.qmth.examcloud.core.oe.student.client;
|
|
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.ExamRecordDataCloudService;
|
|
|
import cn.com.qmth.examcloud.core.oe.student.api.request.*;
|
|
|
import cn.com.qmth.examcloud.core.oe.student.api.response.*;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.core.oe.student.api.ExamRecordDataCloudService;
|
|
|
-
|
|
|
@Service("examRecordDataCloudService")
|
|
|
public class ExamRecordDataCloudServiceClient extends AbstractCloudClientSupport
|
|
|
- implements
|
|
|
- ExamRecordDataCloudService {
|
|
|
+ implements
|
|
|
+ ExamRecordDataCloudService {
|
|
|
|
|
|
|
|
|
- *
|
|
|
+ *
|
|
|
*/
|
|
|
private static final long serialVersionUID = 3745318048361113898L;
|
|
|
|
|
@@ -80,5 +79,16 @@ public class ExamRecordDataCloudServiceClient extends AbstractCloudClientSupport
|
|
|
return post("examRecordData/getExamRecordPaperStruct", req, GetExamRecordPaperStructResp.class);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ * 交卷
|
|
|
+ *
|
|
|
+ * @param req
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public HandInExamResp handInExam(HandInExamReq req) {
|
|
|
+ return post("examRecordData/handInExam", req, HandInExamResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|