1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-06 07:21:24 +08:00

add the function of deleteBatchNoticeType

This commit is contained in:
cccccyb
2023-05-30 01:56:18 +08:00
parent c5a131ea9f
commit 81ab047f20
10 changed files with 85 additions and 6 deletions

View File

@@ -70,4 +70,9 @@ public class NoticeTypeServiceImpl extends ServiceImpl<NoticeTypeMapper, NoticeT
public Boolean deleteNoticeTypeById(Long typeId) {
return noticeTypeMapper.deleteById(typeId)>0;
}
@Override
public Boolean deleteBatchByTypeIds(List<Long> typeIds) {
return noticeTypeMapper.deleteBatchIds(typeIds)>0;
}
}