From 615451e09a34fac293da1fb10d598703a264d718 Mon Sep 17 00:00:00 2001 From: tony <846249920@qq.com> Date: Sat, 29 Jan 2022 18:34:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8C=82=E8=BD=BD=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../flowable/service/impl/FlowDefinitionServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-flowable/src/main/java/com/ruoyi/flowable/service/impl/FlowDefinitionServiceImpl.java b/ruoyi-flowable/src/main/java/com/ruoyi/flowable/service/impl/FlowDefinitionServiceImpl.java index ac37d60..2f8b98e 100644 --- a/ruoyi-flowable/src/main/java/com/ruoyi/flowable/service/impl/FlowDefinitionServiceImpl.java +++ b/ruoyi-flowable/src/main/java/com/ruoyi/flowable/service/impl/FlowDefinitionServiceImpl.java @@ -108,9 +108,9 @@ public class FlowDefinitionServiceImpl extends FlowServiceFactory implements IFl // } PageHelper.startPage(pageNum, pageSize); final List dataList = flowDeployMapper.selectDeployList(name); - + // 加载挂表单 for (FlowProcDefDto procDef : dataList) { - SysForm sysForm = sysDeployFormService.selectSysDeployFormByDeployId(procDef.getId()); + SysForm sysForm = sysDeployFormService.selectSysDeployFormByDeployId(procDef.getDeploymentId()); if (Objects.nonNull(sysForm)) { procDef.setFormName(sysForm.getFormName()); procDef.setFormId(sysForm.getFormId());