From b220383758021bcb26d0a788ebe9a31795d23b6d Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期五, 26 四月 2024 09:41:57 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml | 22 ++++++++++++++++------
1 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
index ef4f226..e844931 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
@@ -47,6 +47,8 @@
<result property="deptNames" column="deptNames"/>
<result property="deptIds" column="deptIds"/>
<result property="tag" column="tag"/>
+ <result property="valueType" column="value_type"/>
+ <result property="reply" column="reply"/>
</resultMap>
<sql id="selectIvrLibaScriptVo">
@@ -56,7 +58,8 @@
deptNames,
deptIds,
questiontitle,
- isenable,
+ value_type,
+ reply,
isAvailable,
questionText,
questionvoice,
@@ -88,7 +91,7 @@
<if test="tag != null and tag != ''">and tag = #{tag}</if>
<if test="suitway != null and suitway != ''">and suitway = #{suitway}</if>
<if test="isAvailable != null and isAvailable != ''">and isAvailable = #{isAvailable}</if>
- <if test="isenable != null ">and isenable = #{isenable}</if>
+ <if test="valueType != null ">and value_type = #{valueType}</if>
<if test="questionText != null and questionText != ''">and questionText = #{questionText}</if>
<if test="questionvoice != null and questionvoice != ''">and questionvoice = #{questionvoice}</if>
<if test="nomatchtext != null and nomatchtext != ''">and nomatchtext = #{nomatchtext}</if>
@@ -136,7 +139,7 @@
<if test="deptNames != null">deptNames,</if>
<if test="tag != null">tag,</if>
<if test="isAvailable != null">isAvailable,</if>
- <if test="isenable != null">isenable,</if>
+ <if test="reply != null">reply,</if>
<if test="questionText != null">questionText,</if>
<if test="questionvoice != null">questionvoice,</if>
<if test="nomatchtext != null">nomatchtext,</if>
@@ -171,6 +174,8 @@
<if test="pid != null">pid,</if>
<if test="guid != null">guid,</if>
<if test="otherdata != null">otherdata,</if>
+ <if test="valueType != null">value_type,</if>
+ <if test="reply != null">reply,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="questiontitle != null">#{questiontitle},</if>
@@ -180,7 +185,7 @@
<if test="deptNames != null">#{deptNames},</if>
<if test="tag != null">#{tag},</if>
<if test="isAvailable != null">#{isAvailable},</if>
- <if test="isenable != null">#{isenable},</if>
+ <if test="reply != null">#{reply},</if>
<if test="questionText != null">#{questionText},</if>
<if test="questionvoice != null">#{questionvoice},</if>
<if test="nomatchtext != null">#{nomatchtext},</if>
@@ -215,6 +220,8 @@
<if test="pid != null">#{pid},</if>
<if test="guid != null">#{guid},</if>
<if test="otherdata != null">#{otherdata},</if>
+ <if test="valueType != null">#{valueType},</if>
+ <if test="reply != null">#{reply},</if>
</trim>
</insert>
@@ -224,7 +231,8 @@
<if test="questiontitle != null">questiontitle = #{questiontitle},</if>
<if test="suitway != null">suitway = #{suitway},</if>
<if test="isAvailable != null">isAvailable = #{isAvailable},</if>
- <if test="isenable != null">isenable = #{isenable},</if>
+ <if test="valueType != null">value_type = #{valueType},</if>
+ <if test="reply != null">reply = #{reply},</if>
<if test="questionText != null">questionText = #{questionText},</if>
<if test="questionvoice != null">questionvoice = #{questionvoice},</if>
<if test="nomatchtext != null">nomatchtext = #{nomatchtext},</if>
@@ -263,6 +271,8 @@
<if test="deptIds != null">deptIds = #{deptIds},</if>
<if test="campus != null">campus = #{campus},</if>
<if test="tag != null">tag = #{tag},</if>
+ <if test="valueType != null">value_type = #{valueType},</if>
+ <if test="reply != null">reply = #{reply},</if>
</trim>
where id = #{id}
</update>
@@ -275,4 +285,4 @@
where id = #{id}
</update>
-</mapper>
\ No newline at end of file
+</mapper>
--
Gitblit v1.9.3