From bb60b5747d5f4b85655a541d4990ec7464497b1b Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期五, 10 五月 2024 18:18:02 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/IvrTaskMapper.xml | 25 +++++++++++++++---------- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/IvrTaskMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrTaskMapper.xml index a2729d0..c43c0a3 100644 --- a/smartor/src/main/resources/mapper/smartor/IvrTaskMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/IvrTaskMapper.xml @@ -6,7 +6,7 @@ <resultMap type="com.smartor.domain.IvrTask" id="IvrTaskResult"> <result property="taskid" column="taskid"/> - <result property="taskName" column="taskname"/> + <result property="taskName" column="task_name"/> <result property="templateid" column="templateid"/> <result property="templatename" column="templatename"/> <result property="labelinfo" column="labelinfo"/> @@ -36,16 +36,17 @@ <result property="pid" column="pid"/> <result property="guid" column="guid"/> <result property="preachform" column="preachform"/> - <result property="isSend" column="is_send"/> + <result property="sendType" column="send_type"/> <result property="sendState" column="send_state"/> <result property="param" column="param"/> <result property="hospType" column="hosp_type"/> <result property="hospno" column="hospno"/> + <result property="taskDesc" column="task_desc"/> </resultMap> <sql id="selectIvrTaskVo"> select taskid, - taskname, + task_name, templateid, templatename, labelinfo, @@ -59,6 +60,7 @@ checkusername, checktime, type, + task_desc, hosp_type, hospno, typename, @@ -76,7 +78,7 @@ pid, guid, preachform, - is_send, + send_type, send_state, param, orgid @@ -86,7 +88,7 @@ <select id="selectIvrTaskList" parameterType="com.smartor.domain.IvrTask" resultMap="IvrTaskResult"> <include refid="selectIvrTaskVo"/> <where> - <if test="taskName != null and taskName != ''">and taskname like concat('%', #{taskName}, '%')</if> + <if test="taskName != null and taskName != ''">and task_name like concat('%', #{taskName}, '%')</if> <if test="templateid != null and templateid != ''">and templateid = #{templateid}</if> <if test="templatename != null and templatename != ''">and templatename like concat('%', #{templatename}, '%') @@ -127,7 +129,7 @@ keyProperty="taskid"> insert into ivr_task <trim prefix="(" suffix=")" suffixOverrides=","> - <if test="taskName != null">taskname,</if> + <if test="taskName != null">task_name,</if> <if test="templateid != null">templateid,</if> <if test="templatename != null">templatename,</if> <if test="labelinfo != null">labelinfo,</if> @@ -157,11 +159,12 @@ <if test="pid != null">pid,</if> <if test="guid != null">guid,</if> <if test="preachform != null">preachform,</if> - <if test="isSend != null">is_send,</if> + <if test="sendType != null">send_type,</if> <if test="sendState != null">send_state,</if> <if test="param != null">param,</if> <if test="hospType != null and hospType != ''">hosp_type,</if> <if test="hospno != null and hospno != ''">hospno,</if> + <if test="taskDesc != null and taskDesc != ''">task_desc,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="taskName != null">#{taskName},</if> @@ -194,18 +197,19 @@ <if test="pid != null">#{pid},</if> <if test="guid != null">#{guid},</if> <if test="preachform != null">#{preachform},</if> - <if test="isSend != null">#{isSend},</if> + <if test="sendType != null">#{sendType},</if> <if test="sendState != null">#{sendState},</if> <if test="param != null">#{param},</if> <if test="hospType != null and hospType != ''">#{hospType},</if> <if test="hospno != null and hospno != ''">#{hospno},</if> + <if test="taskDesc != null and taskDesc != ''">#{taskDesc},</if> </trim> </insert> <update id="updateIvrTask" parameterType="com.smartor.domain.IvrTask"> update ivr_task <trim prefix="SET" suffixOverrides=","> - <if test="taskName != null">taskname = #{taskName},</if> + <if test="taskName != null">task_name = #{taskName},</if> <if test="templateid != null">templateid = #{templateid},</if> <if test="templatename != null">templatename = #{templatename},</if> <if test="labelinfo != null">labelinfo = #{labelinfo},</if> @@ -235,11 +239,12 @@ <if test="pid != null">pid = #{pid},</if> <if test="guid != null">guid = #{guid},</if> <if test="preachform != null">preachform = #{preachform},</if> - <if test="isSend != null">is_send = #{isSend},</if> + <if test="sendType != null">send_type = #{sendType},</if> <if test="sendState != null">send_state = #{sendState},</if> <if test="param != null">param = #{param},</if> <if test="hospType != null and hospType != ''">hosp_type = #{hospType},</if> <if test="hospno != null and hospno != ''">hospno = #{hospno},</if> + <if test="taskDesc != null and taskDesc != ''">task_desc= #{taskDesc},</if> </trim> where taskid = #{taskid} </update> -- Gitblit v1.9.3