diff --git a/src/main/java/cn/com/tenlion/service/applystudents/impl/ApplyStudentsServiceImpl.java b/src/main/java/cn/com/tenlion/service/applystudents/impl/ApplyStudentsServiceImpl.java index 522889b..f45c072 100644 --- a/src/main/java/cn/com/tenlion/service/applystudents/impl/ApplyStudentsServiceImpl.java +++ b/src/main/java/cn/com/tenlion/service/applystudents/impl/ApplyStudentsServiceImpl.java @@ -116,6 +116,9 @@ public class ApplyStudentsServiceImpl extends DefaultBaseService implements IApp // applyStudentsNewVO.setExamOrgId(applyStudentsVO); applyStudentsNewService.save(applyStudentsNewVO); } + if(deleteIdList == null || deleteIdList.size() == 0){ + return; + } applyService.delete(deleteIdList); }