|
@@ -118,6 +118,12 @@ public class ExamStudentServiceImpl implements ExamStudentService {
|
|
|
throw new StatusException("E-150113", "该考试已开始,不能删除");
|
|
|
}
|
|
|
examStudentRepo.deleteByExamId(examId);
|
|
|
+
|
|
|
+ // 同步操作
|
|
|
+ SyncExamStudentReq req = new SyncExamStudentReq();
|
|
|
+ req.setSyncType("deleteByExamId");
|
|
|
+ req.setExamId(examId);
|
|
|
+ dataSyncCloudService.syncExamStudent(req);
|
|
|
}
|
|
|
|
|
|
/*
|