修改因考试申请没有考试人员报错的问题

This commit is contained in:
wans 2021-06-19 16:40:24 +08:00
parent 46dbb3fa5c
commit 0f84db552b

View File

@ -116,6 +116,9 @@ public class ApplyStudentsServiceImpl extends DefaultBaseService implements IApp
// applyStudentsNewVO.setExamOrgId(applyStudentsVO); // applyStudentsNewVO.setExamOrgId(applyStudentsVO);
applyStudentsNewService.save(applyStudentsNewVO); applyStudentsNewService.save(applyStudentsNewVO);
} }
if(deleteIdList == null || deleteIdList.size() == 0){
return;
}
applyService.delete(deleteIdList); applyService.delete(deleteIdList);
} }