From 3153009257c97b0f0099f787e951dd15472d077e Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期一, 24 六月 2024 14:12:42 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/SvyTaskMapper.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/SvyTaskMapper.xml b/smartor/src/main/resources/mapper/smartor/SvyTaskMapper.xml index c093388..63918a0 100644 --- a/smartor/src/main/resources/mapper/smartor/SvyTaskMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/SvyTaskMapper.xml @@ -39,7 +39,7 @@ <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="textParam" column="text_param"/> @@ -97,7 +97,7 @@ pid, guid, preachform, - is_send, + send_type, send_state, param from svy_task @@ -140,7 +140,7 @@ <if test="pid != null ">and pid = #{pid}</if> <if test="guid != null and guid != ''">and guid = #{guid}</if> <if test="preachform != null and preachform != ''">and preachform = #{preachform}</if> - <if test="isSend != null ">and is_send = #{isSend}</if> + <if test="sendType != null ">and send_type = #{sendType}</if> <if test="sendState != null and sendState != ''">and send_state = #{sendState}</if> <if test="param != null and param != ''">and param = #{param}</if> <if test="sendTimeSlot != null and sendTimeSlot != ''">and send_time_slot like concat('%', #{sendTimeSlot}, @@ -192,7 +192,7 @@ <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="textParam != null">text_param,</if> @@ -239,7 +239,7 @@ <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="textParam != null">#{textParam},</if> @@ -290,7 +290,7 @@ <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="textParam != null">text_param = #{textParam},</if> -- Gitblit v1.9.3