|
@@ -114,6 +114,13 @@ public class CoreOeServiceImpl implements CoreOeService {
|
|
|
final String requestUrl = String.format("%s/api/ecs_oe_student/examControl/examHeartbeat", sysProperty.getApiDomain());
|
|
|
return HttpUtils.doGet(requestUrl, key, token);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Result checkTime(String key, String token) throws Exception {
|
|
|
+ //封装请求参数
|
|
|
+ final String requestUrl = String.format("%s/api/ecs_oe_student/examControl/check/time", sysProperty.getApiDomain());
|
|
|
+ return HttpUtils.doGet(requestUrl, key, token);
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
public Result startPracticeExamRecord(String key, String token, String examStudentId) throws Exception {
|