From a5e17e09ce2426ceca8362248bb5e46605bd35d6 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 04 七月 2024 20:26:18 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
index e423228..84d55dc 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
@@ -49,11 +49,13 @@
<result property="tag" column="tag"/>
<result property="valueType" column="value_type"/>
<result property="reply" column="reply"/>
+ <result property="targetdesc" column="targetdesc"/>
</resultMap>
<sql id="selectIvrLibaScriptVo">
select id,
suitway,
+ targetdesc,
campus,
deptNames,
deptIds,
@@ -176,6 +178,7 @@
<if test="otherdata != null">otherdata,</if>
<if test="valueType != null">value_type,</if>
<if test="reply != null">reply,</if>
+ <if test="targetdesc != null">targetdesc,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="questiontitle != null">#{questiontitle},</if>
@@ -222,6 +225,7 @@
<if test="otherdata != null">#{otherdata},</if>
<if test="valueType != null">#{valueType},</if>
<if test="reply != null">#{reply},</if>
+ <if test="targetdesc != null">#{targetdesc},</if>
</trim>
</insert>
@@ -273,6 +277,7 @@
<if test="tag != null">tag = #{tag},</if>
<if test="valueType != null">value_type = #{valueType},</if>
<if test="reply != null">reply = #{reply},</if>
+ <if test="targetdesc != null">targetdesc = #{targetdesc},</if>
</trim>
where id = #{id}
</update>
--
Gitblit v1.9.3