From e52b0e34fc06372aab64c30b526ec289b99c9af7 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 19 六月 2024 10:43:47 +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