From fade99da94325e13e5dc70fd781e5021d2a56f5d Mon Sep 17 00:00:00 2001 From: wjli <591616088@qq.com> Date: 星期五, 12 四月 2024 15:26:46 +0800 Subject: [PATCH] 图片链接显示方法封装和使用。 解决烟草后台本机无法查看图片的问题。 --- xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml b/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml index d81a52a..e2d22d7 100644 --- a/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml +++ b/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml @@ -119,7 +119,7 @@ AND send_date >= #{bo.sendDateStart} </if> <if test="bo.sendDateEnd != null and bo.sendDateEnd != ''"> - AND send_date <= #{bo.sendDateEnd} + AND send_date <= #{bo.sendDateEnd} + ' 23:59:59' </if> </where> GROUP BY @@ -204,7 +204,8 @@ FROM t_sign <where> - 1=1 + 1=1 AND + car_name is not NULL <if test="bo.line != null and bo.line != ''" > AND line like CONCAT ('%', #{bo.line},'%') </if> @@ -248,9 +249,10 @@ FROM t_sign <where> - 1=1 + 1=1 AND + car_name is not NULL <if test="bo.line != null and bo.line != ''" > - AND line = #{bo.line} + AND line like CONCAT ('%', #{bo.line},'%') </if> <if test="bo.carName != null and bo.carName != ''" > AND car_name like CONCAT ('%',#{bo.carName},'%') @@ -283,9 +285,10 @@ FROM t_sign <where> - 1=1 + 1=1 AND + car_name is not NULL <if test="bo.line != null and bo.line != ''" > - AND line = #{bo.line} + AND line like CONCAT ('%', #{bo.line},'%') </if> <if test="bo.carName != null and bo.carName != ''" > AND car_name like CONCAT ('%',#{bo.carName},'%') -- Gitblit v1.9.1