From 15cd7bc67bb5d7d4147dd15f70e4f6fec4be7e7d Mon Sep 17 00:00:00 2001 From: yangsong Date: Mon, 9 Oct 2023 15:02:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E7=A8=8B=E7=BB=93=E6=9D=9F=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E6=9D=83=E9=99=90=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../tyr/server/service/impl/SaasFeatureApplyServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tyr-server/src/main/java/cn/axzo/tyr/server/service/impl/SaasFeatureApplyServiceImpl.java b/tyr-server/src/main/java/cn/axzo/tyr/server/service/impl/SaasFeatureApplyServiceImpl.java index 2b83be77..72287230 100644 --- a/tyr-server/src/main/java/cn/axzo/tyr/server/service/impl/SaasFeatureApplyServiceImpl.java +++ b/tyr-server/src/main/java/cn/axzo/tyr/server/service/impl/SaasFeatureApplyServiceImpl.java @@ -206,7 +206,7 @@ public class SaasFeatureApplyServiceImpl implements SaasFeatureApplyService { } List ids = saasFeatures.stream().map(SaasFeature::getId).sorted().collect(Collectors.toList()); saasFeatureDao.lambdaUpdate().set(SaasFeature::getIsDelete, TableIsDeleteEnum.DELETE.value) - .in(SaasFeature::getId, ids); + .in(SaasFeature::getId, ids).update(); } private List getDetailTree(Long applyId) {