From 8189b7c0274931d2876b1b5d30bc3948ccb51617 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Tue, 22 Jul 2025 10:02:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20bug-503=20=E7=AE=A1=E7=90=86=E7=AB=AF?= =?UTF-8?q?=EF=BC=8C=E6=9C=BA=E5=9E=8B=E7=AE=A1=E7=90=86=E9=87=8C=E9=9D=A2?= =?UTF-8?q?=EF=BC=8C=E7=83=AD=E5=9B=BE=E8=BF=99=E9=87=8C=EF=BC=8C=E6=8F=8F?= =?UTF-8?q?=E7=82=B9=E9=80=89=E6=8B=A9=E9=83=A8=E4=BB=B6=EF=BC=8C=E8=BF=99?= =?UTF-8?q?=E9=87=8C=E9=9C=80=E8=A6=81=E8=83=BD=E5=A4=9F=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E9=83=A8=E4=BB=B6=E6=8F=8F=E8=BF=B0=EF=BC=8C=E7=8E=B0=E5=9C=A8?= =?UTF-8?q?=E6=98=AF=E6=90=9C=E7=B4=A2=E4=B8=8D=E4=BA=86=E9=83=A8=E4=BB=B6?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/ProductPartMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nflg-mobilebroken-repository/src/main/resources/mapper/ProductPartMapper.xml b/nflg-mobilebroken-repository/src/main/resources/mapper/ProductPartMapper.xml index 08a94044..6636ac07 100644 --- a/nflg-mobilebroken-repository/src/main/resources/mapper/ProductPartMapper.xml +++ b/nflg-mobilebroken-repository/src/main/resources/mapper/ProductPartMapper.xml @@ -14,7 +14,7 @@ AND pp.attr_id=#{request.attrId} - AND pp.`name` LIKE CONCAT('%', #{request.name}, '%') + AND (pp.`name` LIKE CONCAT('%', #{request.name}, '%') or pp.`describe` LIKE CONCAT('%', #{request.name}, '%')) ORDER BY pp.enable DESC,pp.id DESC