|
@@ -271,7 +271,7 @@ public class CoreOeServiceImpl implements CoreOeService {
|
|
@Override
|
|
@Override
|
|
public Result getYunSignature(String key, String token, GetYunSignatureReq req) throws Exception {
|
|
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()
|
|
RequestBody formBody = new FormBody.Builder()
|
|
.add("examRecordDataId", req.getExamRecordDataId())
|
|
.add("examRecordDataId", req.getExamRecordDataId())
|
|
.add("order", req.getOrder())
|
|
.add("order", req.getOrder())
|
|
@@ -284,13 +284,13 @@ public class CoreOeServiceImpl implements CoreOeService {
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public Result queryExamList(String key, String token) throws Exception {
|
|
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);
|
|
return HttpUtils.doGet(requestUrl, key, token);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public Result getEndExamInfo(String key, String token, Long examRecordDataId) throws Exception {
|
|
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);
|
|
return HttpUtils.doGet(requestUrl, key, token);
|
|
}
|
|
}
|
|
|
|
|