优化[删除标签接口]性能

This commit is contained in:
2023-04-21 11:46:46 +08:00
parent 761f8d2002
commit 9cd97ee573
@@ -156,11 +156,8 @@ public class ITreeLabelServiceImpl extends ServiceImpl<TreeLabelDao, TreeLabelEn
public boolean deleteById(String id) { public boolean deleteById(String id) {
List<String> nodeAndChildrenIds = findNodeAndChildrenIds(getTreeLabelRoot(), id).stream().distinct().collect(Collectors.toList()); List<String> nodeAndChildrenIds = findNodeAndChildrenIds(getTreeLabelRoot(), id).stream().distinct().collect(Collectors.toList());
LambdaQueryWrapper<ReportLabelEntity> wrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<ReportLabelEntity> wrapper = new LambdaQueryWrapper<>();
nodeAndChildrenIds.forEach(labelLd -> { wrapper.in(ReportLabelEntity::getLabelId, nodeAndChildrenIds);
wrapper.eq(ReportLabelEntity::getLabelId, labelLd);
reportLabelDao.delete(wrapper); reportLabelDao.delete(wrapper);
});
int i = treeLabelDao.deleteBatchIds(nodeAndChildrenIds); int i = treeLabelDao.deleteBatchIds(nodeAndChildrenIds);
return i != 0; return i != 0;
} }