From 104e1d46fb86cb5b5a1aa3cbd8934b15c43fa206 Mon Sep 17 00:00:00 2001
From: fangyuan <527392886@qq.com>
Date: 星期五, 25 十一月 2022 17:32:52 +0800
Subject: [PATCH] 修改实体类StoreInfo
---
ycl-platform/src/main/resources/mapper/caseHandler/WorkflowConfigStepMapper.xml | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/ycl-platform/src/main/resources/mapper/caseHandler/WorkflowConfigStepMapper.xml b/ycl-platform/src/main/resources/mapper/caseHandler/WorkflowConfigStepMapper.xml
index bfe75cc..665b558 100644
--- a/ycl-platform/src/main/resources/mapper/caseHandler/WorkflowConfigStepMapper.xml
+++ b/ycl-platform/src/main/resources/mapper/caseHandler/WorkflowConfigStepMapper.xml
@@ -28,15 +28,19 @@
<result column="handler_id" property="handlerId" />
<result column="create_user" property="createUser" />
<result column="create_time" property="createTime" />
+ <result column="handler_text" property="handlerText" />
+ <result column="result" property="result" />
+ <result column="limit_time" property="limitTime" />
</collection>
</resultMap>
<select id="selectRecordByWorkflowConfigStepId" parameterType="map" resultMap="RecordResultMap">
SELECT
- uwcs.*,udr.*,udr.id record_id
+ uwcs.*,udr.*,udr.id record_id,ua.nick_name handler_text
FROM
ums_workflow_config_step uwcs
LEFT JOIN ums_dispose_record udr ON uwcs.id = udr.workflow_config_step_id AND udr.base_case_id = #{baseCaseId}
+ LEFT JOIN ums_admin ua ON udr.handler_id = ua.id
WHERE
uwcs.workflow_config_id = #{workflowConfigId}
</select>
--
Gitblit v1.8.0