From 1894cd3ea093726db90a6baa780a1a2bde708138 Mon Sep 17 00:00:00 2001 From: xuefei <564615061@qq.cm> Date: 星期二, 17 十月 2023 10:47:13 +0800 Subject: [PATCH] 图片url地址转换 --- xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 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 bcc1401..4dddfd3 100644 --- a/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml +++ b/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml @@ -206,7 +206,7 @@ <where> 1=1 <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},'%') @@ -250,7 +250,7 @@ <where> 1=1 <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},'%') @@ -285,7 +285,7 @@ <where> 1=1 <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