From beca4894acec49f29f7283f3c76c8da5e1c9bfe8 Mon Sep 17 00:00:00 2001 From: wuzeyu <1223318623@qq.com> Date: 星期四, 01 八月 2024 08:48:35 +0800 Subject: [PATCH] 获取全部取水口(在线不在线)接口增加查询条件是否绑定控制器,分页查询默认返回10条 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmLossDayLastMapper.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmLossDayLastMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmLossDayLastMapper.xml index 972b0df..f3dfb90 100644 --- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmLossDayLastMapper.xml +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/RmLossDayLastMapper.xml @@ -169,7 +169,7 @@ and pint.name like CONCAT('%',#{intakeName,jdbcType=VARCHAR},'%') </if> <if test="intakeId != null"> - and rash.intake_id = #{intakeId} + and rldl.intake_id = #{intakeId} </if> <if test="startDt != null"> and rldl.dt >= #{startDt,jdbcType=DATE} @@ -197,7 +197,7 @@ and pint.name like CONCAT('%',#{intakeName,jdbcType=VARCHAR},'%') </if> <if test="intakeId != null"> - and rash.intake_id = #{intakeId} + and rldl.intake_id = #{intakeId} </if> <if test="startDt != null"> and rldl.dt >= #{startDt,jdbcType=DATE} @@ -206,7 +206,7 @@ and rldl.dt <= #{endDt,jdbcType=DATE} </if> </where> - ORDER BY rldl.id DESC + ORDER BY rld.dt DESC , rld.loss_amount DESC <if test="pageCurr != null and pageSize != null"> LIMIT ${(pageCurr-1)*pageSize}, ${pageSize} </if> -- Gitblit v1.8.0