From e06d315f20570f765ae361c135f940940bdaa39c Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 06 四月 2023 18:55:20 +0800
Subject: [PATCH] add community publicity

---
 java110-db/src/main/resources/mapper/common/WorkflowV1ServiceDaoImplMapper.xml |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/common/WorkflowV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/common/WorkflowV1ServiceDaoImplMapper.xml
index 9a0b1f8..25283d2 100644
--- a/java110-db/src/main/resources/mapper/common/WorkflowV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/common/WorkflowV1ServiceDaoImplMapper.xml
@@ -8,9 +8,9 @@
     <!-- 淇濆瓨宸ヤ綔娴佺▼淇℃伅 add by wuxw 2018-07-03 -->
     <insert id="saveWorkflowInfo" parameterType="Map">
         insert into workflow(
-        skip_level,describle,community_id,store_id,flow_id,flow_name,flow_type,process_definition_key
+        skip_level,describle,community_id,store_id,flow_id,flow_name,flow_type,process_definition_key,start_node_finish
         ) values (
-        #{skipLevel},#{describle},#{communityId},#{storeId},#{flowId},#{flowName},#{flowType},#{processDefinitionKey}
+        #{skipLevel},#{describle},#{communityId},#{storeId},#{flowId},#{flowName},#{flowType},#{processDefinitionKey},#{startNodeFinish}
         )
     </insert>
 
@@ -20,7 +20,7 @@
         select t.skip_level,t.skip_level skipLevel,t.describle,t.status_cd,t.status_cd
         statusCd,t.community_id,t.community_id communityId,t.store_id,t.store_id storeId,t.flow_id,t.flow_id
         flowId,t.flow_name,t.flow_name flowName,t.flow_type,t.flow_type
-        flowType,t.process_definition_key,t.process_definition_key processDefinitionKey
+        flowType,t.process_definition_key,t.process_definition_key processDefinitionKey,t.start_node_finish startNodeFinish
         from workflow t
         where 1 =1
         <if test="skipLevel !=null and skipLevel != ''">
@@ -82,6 +82,9 @@
         <if test="flowType !=null and flowType != ''">
             , t.flow_type= #{flowType}
         </if>
+        <if test="startNodeFinish !=null and startNodeFinish != ''">
+            , t.start_node_finish= #{startNodeFinish}
+        </if>
         <if test="processDefinitionKey !=null and processDefinitionKey != ''">
             , t.process_definition_key= #{processDefinitionKey}
         </if>

--
Gitblit v1.8.0