From 01a79d5b431b71cc79cf5f6cc92cd4f3432781dd Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 30 四月 2024 12:39:54 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/IvrLibaTemplateMapper.xml | 20 +++++++++++++------- 1 files changed, 13 insertions(+), 7 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateMapper.xml index 1aea316..41c167d 100644 --- a/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/IvrLibaTemplateMapper.xml @@ -16,7 +16,8 @@ <result property="submodule" column="submodule"/> <result property="language" column="language"/> <result property="note" column="note"/> - <result property="isEnable" column="isEnable"/> + <result property="valueType" column="value_type"/> + <result property="reply" column="reply"/> <result property="addUserID" column="addUserID"/> <result property="addTime" column="addTime"/> <result property="modifyUserID" column="modifyUserID"/> @@ -58,6 +59,8 @@ <sql id="selectIvrLibaTemplateVo"> select ID, targetid, + value_type, + reply, revisit_before, revisit_after, targetname, @@ -74,7 +77,7 @@ suitway, mate_num, no_voice_num, - submodule, language, note, isEnable, addUserID, addTime, modifyUserID, modifyTime, groupID, label_info, submoduleID, playType, icd10code, icd10codename, atuoTaskDayOffset, deptIds, dept_names, F_KSDM, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, assortid, parameter + submodule, language, note, addUserID, addTime, modifyUserID, modifyTime, groupID, label_info, submoduleID, playType, icd10code, icd10codename, atuoTaskDayOffset, deptIds, dept_names, F_KSDM, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, assortid, parameter from ivr_liba_template </sql> @@ -102,7 +105,6 @@ <if test="submodule != null and submodule != ''">and submodule = #{submodule}</if> <if test="language != null and language != ''">and language = #{language}</if> <if test="note != null and note != ''">and note = #{note}</if> - <if test="isEnable != null ">and isEnable = #{isEnable}</if> <if test="addUserID != null and addUserID != ''">and addUserID = #{addUserID}</if> <if test="addTime != null ">and addTime = #{addTime}</if> <if test="modifyUserID != null and modifyUserID != ''">and modifyUserID = #{modifyUserID}</if> @@ -156,7 +158,8 @@ <if test="submodule != null">submodule,</if> <if test="language != null and language != ''">language,</if> <if test="note != null">note,</if> - <if test="isEnable != null">isEnable,</if> + <if test="valueType != null">value_type,</if> + <if test="reply != null">reply,</if> <if test="addUserID != null">addUserID,</if> <if test="addTime != null">addTime,</if> <if test="modifyUserID != null">modifyUserID,</if> @@ -205,7 +208,8 @@ <if test="submodule != null">#{submodule},</if> <if test="language != null and language != ''">#{language},</if> <if test="note != null">#{note},</if> - <if test="isEnable != null">#{isEnable},</if> + <if test="valueType != null">#{valueType},</if> + <if test="reply != null">#{reply},</if> <if test="addUserID != null">#{addUserID},</if> <if test="addTime != null">#{addTime},</if> <if test="modifyUserID != null">#{modifyUserID},</if> @@ -239,6 +243,7 @@ <if test="revisitAfter != null ">#{revisitAfter}</if> <if test="revisitBefore != null ">#{revisitBefore}</if> <if test="noVoiceNum != null and noVoiceNum > 0">#{noVoiceNum}</if> + </trim> </insert> @@ -258,7 +263,8 @@ <if test="submodule != null">submodule = #{submodule},</if> <if test="language != null and language != ''">language = #{language},</if> <if test="note != null">note = #{note},</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="addUserID != null">addUserID = #{addUserID},</if> <if test="addTime != null">addTime = #{addTime},</if> <if test="modifyUserID != null">modifyUserID = #{modifyUserID},</if> @@ -310,4 +316,4 @@ #{ID} </foreach> </delete> -</mapper> \ No newline at end of file +</mapper> -- Gitblit v1.9.3