From 78c9129e9045fafe4c2f7333b3dcafde6b20b96d Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 05 十二月 2024 15:20:51 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml | 23 ++++++++++++++++-------
1 files changed, 16 insertions(+), 7 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
index ae9c65b..db40df2 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
@@ -8,7 +8,8 @@
<result property="id" column="id"/>
<result property="scriptTopic" column="script_topic"/>
<result property="scriptContent" column="script_content"/>
- <result property="scriptVoice" column="script_voice"/>
+ <result property="ivrVoice" column="ivr_voice"/>
+ <result property="ivrtext" column="ivrtext"/>
<result property="scriptDesc" column="script_desc"/>
<result property="noMatchText" column="nomatchtext"/>
<result property="nomatchvoice" column="nomatchvoice"/>
@@ -66,7 +67,8 @@
isAvailable,
script_content,
script_desc,
- script_voice,
+ ivr_voice,
+ ivrtext,
nomatchtext,
nomatchvoice,
sliencetext,
@@ -87,10 +89,13 @@
resultMap="IvrLibaScriptResult">
<include refid="selectIvrLibaScriptVo"/>
<where>
+ del_flag=0
<if test="id != null ">and id = #{id}</if>
<if test="deptIds != null and deptIds != ''">and deptIds = #{deptIds}</if>
<if test="deptNames != null and deptNames != ''">and deptNames like concat('%', #{deptNames}, '%')</if>
- <if test="scriptTopic != null and scriptTopic != ''">and script_topic like concat('%', #{scriptTopic}, '%')</if>
+ <if test="scriptTopic != null and scriptTopic != ''">and script_topic like concat('%', #{scriptTopic},
+ '%')
+ </if>
<if test="campus != null and campus != ''">and campus = #{campus}</if>
<if test="tag != null and tag != ''">and tag = #{tag}</if>
<if test="suitway != null and suitway != ''">and suitway = #{suitway}</if>
@@ -98,7 +103,8 @@
<if test="valueType != null ">and value_type = #{valueType}</if>
<if test="scriptContent != null and scriptContent != ''">and script_content = #{scriptContent}</if>
<if test="scriptDesc != null and scriptDesc != ''">and script_desc = #{scriptDesc}</if>
- <if test="scriptVoice != null and scriptVoice != ''">and script_voice = #{scriptVoice}</if>
+ <if test="ivrVoice != null and ivrVoice != ''">and ivr_voice = #{ivrVoice}</if>
+ <if test="ivrtext != null and ivrtext != ''">and ivrtext = #{ivrtext}</if>
<if test="noMatchText != null and noMatchText != ''">and nomatchtext = #{noMatchText}</if>
<if test="nomatchvoice != null and nomatchvoice != ''">and nomatchvoice = #{nomatchvoice}</if>
<if test="slienceText != null and slienceText != ''">and sliencetext = #{slienceText}</if>
@@ -147,7 +153,8 @@
<if test="reply != null">reply,</if>
<if test="scriptContent != null">script_content,</if>
<if test="scriptDesc != null">script_desc,</if>
- <if test="scriptVoice != null">script_voice,</if>
+ <if test="ivrVoice != null">ivr_voice,</if>
+ <if test="ivrtext != null">ivrtext,</if>
<if test="noMatchText != null">nomatchtext,</if>
<if test="nomatchvoice != null">nomatchvoice,</if>
<if test="slienceText != null">sliencetext,</if>
@@ -195,7 +202,8 @@
<if test="reply != null">#{reply},</if>
<if test="scriptContent != null">#{scriptContent},</if>
<if test="scriptDesc != null">#{scriptDesc},</if>
- <if test="scriptVoice != null">#{scriptVoice},</if>
+ <if test="ivrVoice != null">#{ivrVoice},</if>
+ <if test="ivrtext != null">#{ivrtext},</if>
<if test="noMatchText != null">#{noMatchText},</if>
<if test="nomatchvoice != null">#{nomatchvoice},</if>
<if test="slienceText != null">#{slienceText},</if>
@@ -244,7 +252,8 @@
<if test="reply != null">reply = #{reply},</if>
<if test="scriptContent != null">script_content = #{scriptContent},</if>
<if test="scriptDesc != null">script_desc = #{scriptDesc},</if>
- <if test="scriptVoice != null">script_voice = #{scriptVoice},</if>
+ <if test="ivrVoice != null">ivr_voice = #{ivrVoice},</if>
+ <if test="ivrtext != null">ivrtext = #{ivrtext},</if>
<if test="noMatchText != null">nomatchtext = #{noMatchText},</if>
<if test="nomatchvoice != null">nomatchvoice = #{nomatchvoice},</if>
<if test="slienceText != null">sliencetext = #{slienceText},</if>
--
Gitblit v1.9.3