From df09300c82124ebb6bc3f5b434a2a8f1b9cf4427 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期五, 01 十一月 2024 19:09:23 +0800 Subject: [PATCH] 修改 --- ruoyi-service/ruoyi-order/src/main/resources/mapper/order/TSettlementConfirmMapper.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ruoyi-service/ruoyi-order/src/main/resources/mapper/order/TSettlementConfirmMapper.xml b/ruoyi-service/ruoyi-order/src/main/resources/mapper/order/TSettlementConfirmMapper.xml index 5b7209c..f7ed17b 100644 --- a/ruoyi-service/ruoyi-order/src/main/resources/mapper/order/TSettlementConfirmMapper.xml +++ b/ruoyi-service/ruoyi-order/src/main/resources/mapper/order/TSettlementConfirmMapper.xml @@ -10,9 +10,9 @@ </if> </select> <select id="settlementList" resultType="com.ruoyi.order.api.model.TSettlementConfirm"> -select t1.* from - t_settlement_confirm t1 -where 1=1 + select t1.* from + t_settlement_confirm t1 + where 1=1 <if test="req.partnerId != null "> and t1.partner_id = #{req.partnerId} </if> @@ -21,14 +21,14 @@ </if> <if test="req.type == 1 "> <if test="req.startTime != null and req.startTime!=''"> - and (t1.start_time between #{req.startTime} and #{req.endTime} + and (t1.start_time between #{req.startTime} and #{req.endTime}) </if> </if> <if test="req.type == 2 "> <if test="req.startTime != null and req.startTime!=''"> - and (t1.end_time between #{req.startTime} and #{req.endTime} + and (t1.end_time between #{req.startTime} and #{req.endTime}) </if> </if> - and t1.del_flag = 0 + and t1.del_flag = 0 </select> </mapper> -- Gitblit v1.7.1