From bfdc738a7d11d7a132747c52fe51f6887405fae4 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 04 七月 2024 16:29:21 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/IvrTaskcalldetailMapper.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/IvrTaskcalldetailMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrTaskcalldetailMapper.xml
index d1fe163..2502583 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrTaskcalldetailMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrTaskcalldetailMapper.xml
@@ -45,6 +45,7 @@
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="createBy" column="create_by"/>
+ <result property="valueType" column="value_type"/>
</resultMap>
<sql id="selectIvrTaskcalldetailVo">
@@ -87,6 +88,7 @@
del_flag,
update_by,
update_time,
+ value_type,
create_by
from ivr_taskcalldetail
</sql>
@@ -131,6 +133,7 @@
<if test="isupload != null ">and isupload = #{isupload}</if>
<if test="uploadTime != null ">and upload_time = #{uploadTime}</if>
<if test="orgid != null and orgid != ''">and orgid = #{orgid}</if>
+ <if test="valueType != null and valueType != ''">and value_type = #{valueType}</if>
</where>
</select>
@@ -182,6 +185,7 @@
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="createBy != null">create_by,</if>
+ <if test="valueType != null">value_type,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="calldetailid != null">#{calldetailid},</if>
@@ -224,6 +228,7 @@
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="createBy != null">#{createBy},</if>
+ <if test="valueType != null">#{valueType},</if>
</trim>
</insert>
@@ -269,6 +274,7 @@
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="createBy != null">create_by = #{createBy},</if>
+ <if test="valueType != null">value_type = #{valueType},</if>
</trim>
where calldetailid = #{calldetailid}
</update>
--
Gitblit v1.9.3