From 0c293e0284b9e34aa1b6deb529a915739ceff2a1 Mon Sep 17 00:00:00 2001 From: konbai <1527468660@qq.com> Date: Sat, 23 Jul 2022 21:20:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=81=E7=A8=8B=E9=83=A8=E7=BD=B2):=20?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=B5=81=E7=A8=8B=E9=83=A8=E7=BD=B2=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E9=87=87=E7=94=A8=E8=81=94=E7=BA=A7=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/workflow/service/impl/WfDeployServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/workflow/service/impl/WfDeployServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/workflow/service/impl/WfDeployServiceImpl.java index 9aedca49..43818005 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/workflow/service/impl/WfDeployServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/workflow/service/impl/WfDeployServiceImpl.java @@ -154,7 +154,7 @@ public class WfDeployServiceImpl implements IWfDeployService { @Transactional(rollbackFor = Exception.class) public void deleteByIds(List deployIds) { for (String deployId : deployIds) { - repositoryService.deleteDeployment(deployId); + repositoryService.deleteDeployment(deployId, true); deployFormMapper.delete(new LambdaQueryWrapper().eq(WfDeployForm::getDeployId, deployId)); } }