From 0f84db552b83fe89dcc1289d002791ad23072912 Mon Sep 17 00:00:00 2001 From: wans <747101512@qq.com> Date: Sat, 19 Jun 2021 16:40:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=9B=A0=E8=80=83=E8=AF=95?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E6=B2=A1=E6=9C=89=E8=80=83=E8=AF=95=E4=BA=BA?= =?UTF-8?q?=E5=91=98=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/applystudents/impl/ApplyStudentsServiceImpl.java | 3 +++ 1 file changed, 3 insertions(+) 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); }