From 5d1d54e83546ba9fc85c69b32287883d04f4a475 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期五, 01 十一月 2024 18:56:13 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml
index 60f4695..ff7c3ee 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptTargetoptionMapper.xml
@@ -36,11 +36,13 @@
<result property="appendflag" column="appendflag"/>
<result property="appenddesc" column="appenddesc"/>
<result property="picturePath" column="picture_path"/>
+ <result property="isEnd" column="is_end"/>
</resultMap>
<sql id="selectIvrLibaScriptTargetoptionVo">
select id,
targetid,
+ is_end,
picture_path,
targetname,
appendflag,
@@ -75,6 +77,7 @@
<if test="optiondesc != null and optiondesc != ''">and optiondesc = #{optiondesc}</if>
<if test="language != null and language != ''">and language = #{language}</if>
<if test="version != null ">and version = #{version}</if>
+ <if test="isEnd != null ">and is_end = #{isEnd}</if>
<if test="groupid != null and groupid != ''">and groupid = #{groupid}</if>
<if test="isabnormal != null ">and isabnormal = #{isabnormal}</if>
<if test="warnup != null ">and warnup = #{warnup}</if>
@@ -132,6 +135,7 @@
<if test="appendflag != null">appendflag,</if>
<if test="appenddesc != null">appenddesc,</if>
<if test="picturePath != null">picture_path,</if>
+ <if test="isEnd != null ">is_end,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
@@ -165,6 +169,7 @@
<if test="appendflag != null">#{appendflag},</if>
<if test="appenddesc != null">#{appenddesc},</if>
<if test="picturePath != null">#{picturePath},</if>
+ <if test="isEnd != null ">#{isEnd},</if>
</trim>
</insert>
@@ -201,6 +206,7 @@
<if test="appendflag != null">appendflag = #{appendflag},</if>
<if test="appenddesc != null">appenddesc = #{appenddesc},</if>
<if test="picturePath != null">picture_path = #{picturePath},</if>
+ <if test="isEnd != null ">is_end = #{isEnd},</if>
</trim>
where id = #{id}
</update>
--
Gitblit v1.9.3