From e26624a35165790cd2c9cbf37644abaa6bcee41e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?= <15040126243@163.com> Date: Wed, 18 Dec 2024 10:27:56 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E8=B0=83=E6=95=B4sql=E4=B9=A6?= =?UTF-8?q?=E5=86=99=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/workflow/FlwTaskMapper.xml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ruoyi-modules/ruoyi-workflow/src/main/resources/mapper/workflow/FlwTaskMapper.xml b/ruoyi-modules/ruoyi-workflow/src/main/resources/mapper/workflow/FlwTaskMapper.xml index 45d2ccded..18fd42d43 100644 --- a/ruoyi-modules/ruoyi-workflow/src/main/resources/mapper/workflow/FlwTaskMapper.xml +++ b/ruoyi-modules/ruoyi-workflow/src/main/resources/mapper/workflow/FlwTaskMapper.xml @@ -22,14 +22,14 @@ t.tenant_id, i.business_id, i.flow_status, + i.create_by, d.flow_name, d.flow_code, d.form_custom, COALESCE(t.form_path, d.form_path) as form_path, d.version, uu.processed_by, - uu.type, - i.create_by + uu.type from flow_task as t left join flow_user uu on uu.associated = t.id left join flow_definition d on t.definition_id = d.id @@ -57,19 +57,19 @@ a.definition_id, a.instance_id, a.flow_status flow_task_status, - b.flow_status, a.message, a.ext, a.create_time, a.update_time, a.tenant_id, - b.business_id, a.form_custom, a.form_path, + b.flow_status, + b.business_id, + b.create_by, c.flow_name, c.flow_code, - c.version, - b.create_by + c.version from flow_his_task a left join flow_instance b on a.instance_id = b.id left join flow_definition c on a.definition_id = c.id @@ -84,13 +84,13 @@