From 035108ae9d6ea2c2daa860921f296fda02a8e410 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 02 九月 2026 10:42:25 +0800
Subject: [PATCH] 1.满意度导出BUG处理 2.三汇电话接口部分 3.外链可以通过subid查询到

---
 smartor/src/main/resources/mapper/smartor/ServiceOutPathMapper.xml |   30 +++++++++++++++++++++++++++++-
 1 files changed, 29 insertions(+), 1 deletions(-)

diff --git a/smartor/src/main/resources/mapper/smartor/ServiceOutPathMapper.xml b/smartor/src/main/resources/mapper/smartor/ServiceOutPathMapper.xml
index fd1a9fb..afedfde 100644
--- a/smartor/src/main/resources/mapper/smartor/ServiceOutPathMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/ServiceOutPathMapper.xml
@@ -22,6 +22,9 @@
         <result property="wardName" column="ward_name"/>
         <result property="deptCode" column="dept_code"/>
         <result property="deptName" column="dept_name"/>
+        <result property="taskId" column="task_id"/>
+        <result property="subId" column="sub_id"/>
+
     </resultMap>
 
     <sql id="selectServiceOutPathVo">
@@ -31,6 +34,8 @@
                param3,
                param5,
                param6,
+               task_id,
+               sub_id,
                create_time,
                update_time,
                radix,
@@ -87,6 +92,12 @@
         <if test="deptName != null  and deptName != ''">
             and dept_name=#{deptName}
         </if>
+        <if test="subId != null">
+            and sub_id=#{subId}
+        </if>
+        <if test="taskId != null">
+            and task_id=#{taskId}
+        </if>
     </select>
 
     <select id="selectServiceOutPathById" parameterType="Long"
@@ -125,7 +136,12 @@
             </if>
             <if test="deptName != null">dept_name,
             </if>
-
+            <if test="subId != null">
+                sub_id,
+            </if>
+            <if test="taskId != null ">
+                task_id,
+            </if>
         </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="param1 != null">#{param1},
@@ -153,6 +169,12 @@
             <if test="deptCode != null">#{deptCode},
             </if>
             <if test="deptName != null">#{deptName},
+            </if>
+            <if test="subId != null ">
+                #{subId},
+            </if>
+            <if test="taskId != null ">
+                #{taskId},
             </if>
         </trim>
     </insert>
@@ -202,6 +224,12 @@
             <if test="deptName != null">dept_name =
                 #{deptName},
             </if>
+            <if test="subId != null">
+                sub_id=#{subId},
+            </if>
+            <if test="taskId != null">
+                task_id=#{taskId},
+            </if>
         </trim>
         where id = #{id}
     </update>

--
Gitblit v1.9.3