From 907641e56c2085aaa81f267946dc3e3e9fca73e7 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 18 九月 2024 09:39:02 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml index e70c55c..860682a 100644 --- a/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml @@ -61,6 +61,7 @@ <result property="recallcount" column="recallcount"/> <result property="instruction" column="instruction"/> <result property="sendDay" column="send_day"/> + <result property="deptCode" column="dept_code"/> </resultMap> @@ -73,6 +74,7 @@ libtemplateid, libtemplatename, taskname, + dept_code, targetid, targetname, templateName, @@ -143,6 +145,7 @@ <if test="revisitAfter != null and revisitAfter != ''">and revisit_after = #{revisitAfter}</if> <if test="noVoiceNum != null ">and no_voice_num = #{noVoiceNum}</if> <if test="recallcount != null">and recallcount = #{prologrecallcountue}</if> + <if test="deptCode != null">and dept_code = #{deptCode}</if> </where> </select> @@ -210,6 +213,7 @@ <if test="libtemplatename != null ">libtemplatename,</if> <if test="instruction != null ">instruction,</if> <if test="sendDay != null ">send_day,</if> + <if test="deptCode != null">dept_code,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="taskid != null">#{taskid},</if> @@ -267,6 +271,7 @@ <if test="libtemplatename != null ">#{libtemplatename},</if> <if test="instruction != null ">#{instruction},</if> <if test="sendDay != null ">#{sendDay},</if> + <if test="deptCode != null">#{deptCode},</if> </trim> </insert> @@ -328,6 +333,7 @@ <if test="libtemplatename != null ">libtemplatename = #{libtemplatename},</if> <if test="instruction != null ">instruction = #{instruction},</if> <if test="sendDay != null ">send_day = #{sendDay},</if> + <if test="deptCode != null">dept_code = #{deptCode},</if> </trim> where id = #{id} </update> -- Gitblit v1.9.3