From 0b02577ab12ac83a0530b7e0495b513dd0cdabca Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 02 七月 2024 11:25:08 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml index 40d3f32..acd0b89 100644 --- a/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/IvrTaskTemplateMapper.xml @@ -59,12 +59,14 @@ <result property="libtemplateid" column="libtemplateid"/> <result property="libtemplatename" column="libtemplatename"/> <result property="recallcount" column="recallcount"/> + <result property="instruction" column="instruction"/> </resultMap> <sql id="selectIvrTaskTemplateVo"> select ID, taskid, recallcount, + instruction, libtemplateid, libtemplatename, taskname, @@ -201,6 +203,7 @@ <if test="recallcount != null">recallcount,</if> <if test="libtemplateid != null ">libtemplateid,</if> <if test="libtemplatename != null ">libtemplatename,</if> + <if test="instruction != null ">instruction,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="taskid != null">#{taskid},</if> @@ -256,6 +259,7 @@ <if test="recallcount != null">#{recallcount},</if> <if test="libtemplateid != null ">#{libtemplateid},</if> <if test="libtemplatename != null ">#{libtemplatename},</if> + <if test="instruction != null ">#{instruction},</if> </trim> </insert> @@ -315,6 +319,7 @@ <if test="recallcount != null">recallcount = #{recallcount},</if> <if test="libtemplateid != null ">libtemplateid = #{libtemplateid},</if> <if test="libtemplatename != null ">libtemplatename = #{libtemplatename},</if> + <if test="instruction != null ">instruction = #{instruction},</if> </trim> where ID = #{ID} </update> -- Gitblit v1.9.3