流程结束删除权限点

This commit is contained in:
yangsong 2023-10-09 15:02:46 +08:00
parent 8eb3168177
commit 15cd7bc67b

View File

@ -206,7 +206,7 @@ public class SaasFeatureApplyServiceImpl implements SaasFeatureApplyService {
} }
List<Long> ids = saasFeatures.stream().map(SaasFeature::getId).sorted().collect(Collectors.toList()); List<Long> ids = saasFeatures.stream().map(SaasFeature::getId).sorted().collect(Collectors.toList());
saasFeatureDao.lambdaUpdate().set(SaasFeature::getIsDelete, TableIsDeleteEnum.DELETE.value) saasFeatureDao.lambdaUpdate().set(SaasFeature::getIsDelete, TableIsDeleteEnum.DELETE.value)
.in(SaasFeature::getId, ids); .in(SaasFeature::getId, ids).update();
} }
private List<PermissionPointApplyVO.PermissionPointInfoVO> getDetailTree(Long applyId) { private List<PermissionPointApplyVO.PermissionPointInfoVO> getDetailTree(Long applyId) {