From 13c9e4032de40598787a453de77ba0db94666664 Mon Sep 17 00:00:00 2001 From: wjli <591616088@qq.com> Date: 星期四, 25 五月 2023 15:53:07 +0800 Subject: [PATCH] 接货图片和签收图片的完善 --- 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