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 | 18 ++++++++++++------ 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml index 08bb74d..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, @@ -101,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> @@ -150,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> @@ -198,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> @@ -247,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