From e180e3a496d6f29d3a3b34016400de9d997c6bd9 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 07 四月 2026 14:42:23 +0800
Subject: [PATCH] 省立同德满意度功能提交

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

diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml
index 7878f0a..20de24c 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml
@@ -37,12 +37,14 @@
         <result property="appenddesc" column="appenddesc"/>
         <result property="picturePath" column="picture_path"/>
         <result property="isEnd" column="is_end"/>
+        <result property="isException" column="is_exception"/>
     </resultMap>
 
     <sql id="selectIvrLibaScriptTargetoptionVo">
         select id,
                targetid,
                is_end,
+               is_exception,
                picture_path,
                targetname,
                appendflag,
@@ -92,6 +94,7 @@
             <if test="appendflag != null">and appendflag = #{appendflag}</if>
             <if test="appenddesc != null">and appenddesc = #{appenddesc}</if>
             <if test="picturePath != null">and picture_path = #{picturePath}</if>
+            <if test="isException != null">and is_exception = #{isException}</if>
     </select>
 
     <select id="selectIvrLibaScriptTargetoptionByTargetoptionid" parameterType="String"
@@ -135,6 +138,7 @@
             <if test="appenddesc != null">appenddesc,</if>
             <if test="picturePath != null">picture_path,</if>
             <if test="isEnd != null ">is_end,</if>
+            <if test="isException != null ">is_exception,</if>
         </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="id != null">#{id},</if>
@@ -169,6 +173,7 @@
             <if test="appenddesc != null">#{appenddesc},</if>
             <if test="picturePath != null">#{picturePath},</if>
             <if test="isEnd != null ">#{isEnd},</if>
+            <if test="isException != null ">#{isException},</if>
         </trim>
     </insert>
 
@@ -206,6 +211,7 @@
             <if test="appenddesc != null">appenddesc = #{appenddesc},</if>
             <if test="picturePath != null">picture_path = #{picturePath},</if>
             <if test="isEnd != null ">is_end = #{isEnd},</if>
+            <if test="isException != null ">is_exception = #{isException},</if>
         </trim>
         where id = #{id}
     </update>

--
Gitblit v1.9.3