xiatian 5 年之前
父节点
当前提交
ab15a973a3
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/main/java/cn/com/qmth/examcloud/app/service/impl/CoreOeServiceImpl.java

+ 3 - 3
src/main/java/cn/com/qmth/examcloud/app/service/impl/CoreOeServiceImpl.java

@@ -271,7 +271,7 @@ public class CoreOeServiceImpl implements CoreOeService {
     @Override
     public Result getYunSignature(String key, String token, GetYunSignatureReq req) throws Exception {
         //封装请求参数
-        final String requestUrl = String.format("%s/api/examControl/yunSignature", sysProperty.getCoreOeStudentUrl());
+        final String requestUrl = String.format("%s/api/ecs_oe_student/examControl/yunSignature", sysProperty.getCoreOeStudentUrl());
         RequestBody formBody = new FormBody.Builder()
                 .add("examRecordDataId", req.getExamRecordDataId())
                 .add("order", req.getOrder())
@@ -284,13 +284,13 @@ public class CoreOeServiceImpl implements CoreOeService {
 
     @Override
     public Result queryExamList(String key, String token) throws Exception {
-        final String requestUrl = String.format("%s/api/examControl/queryExamList", sysProperty.getCoreOeAdminUrl());
+        final String requestUrl = String.format("%s/api/ecs_oe_admin/examControl/queryExamList", sysProperty.getCoreOeAdminUrl());
         return HttpUtils.doGet(requestUrl, key, token);
     }
 
     @Override
     public Result getEndExamInfo(String key, String token, Long examRecordDataId) throws Exception {
-        final String requestUrl = String.format("%s/api/examControl/getEndExamInfo?examRecordDataId="+examRecordDataId, sysProperty.getCoreOeStudentUrl());
+        final String requestUrl = String.format("%s/api/ecs_oe_student/examControl/getEndExamInfo?examRecordDataId="+examRecordDataId, sysProperty.getCoreOeStudentUrl());
         return HttpUtils.doGet(requestUrl, key, token);
     }