From f55c563e2a0b52e4569ce6b5f81632cac598f7fe Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 30 十月 2024 18:36:55 +0800
Subject: [PATCH] 代码提交

---
 smartor/src/main/resources/mapper/smartor/IvrLibaTemplateScriptMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateScriptMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateScriptMapper.xml
index 50c8b1e..255d283 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateScriptMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateScriptMapper.xml
@@ -47,12 +47,14 @@
         <result property="branchNextscriptno" column="branch_nextscriptno"/>
         <result property="sort" column="sort"/>
         <result property="score" column="score"/>
+        <result property="groupName" column="group_name"/>
     </resultMap>
 
     <sql id="selectIvrLibaTemplateScriptVo">
         select id,
                scriptno,
                sort,
+               group_name,
                branch_flag,
                branch_nextscriptno,
                templateid,
@@ -100,6 +102,7 @@
         <where>
             del_flag=0
             <if test="scriptno != null ">and scriptno = #{scriptno}</if>
+            <if test="groupName != null ">and group_name = #{groupName}</if>
             <if test="scriptDesc != null ">and script_desc = #{scriptDesc}</if>
             <if test="templateid != null ">and templateid = #{templateid}</if>
             <if test="scriptPoint != null  and scriptPoint != ''">and script_point = #{scriptPoint}</if>
@@ -192,6 +195,7 @@
             <if test="sort != null ">sort,</if>
             <if test="score != null ">score,</if>
             <if test="ivrtext != null ">ivrtext,</if>
+            <if test="groupName != null ">group_name,</if>
         </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="scriptno != null">#{scriptno},</if>
@@ -234,6 +238,7 @@
             <if test="sort != null ">#{sort},</if>
             <if test="score != null ">#{score},</if>
             <if test="ivrtext != null ">#{ivrtext},</if>
+            <if test="groupName != null ">#{groupName},</if>
         </trim>
     </insert>
 
@@ -278,6 +283,7 @@
             <if test="ivrtext != null ">ivrtext = #{ivrtext},</if>
             <if test="branchFlag != null  and branchFlag != ''">branch_flag = #{branchFlag},</if>
             <if test="score != null ">score = #{score},</if>
+            <if test="groupName != null ">group_name = #{groupName},</if>
             <if test="branchNextscriptno != null  and branchNextscriptno != ''">branch_nextscriptno =
                 #{branchNextscriptno},
             </if>

--
Gitblit v1.9.3