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 1/2] =?UTF-8?q?fix:=20bug-503=20=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E7=AB=AF=EF=BC=8C=E6=9C=BA=E5=9E=8B=E7=AE=A1=E7=90=86=E9=87=8C?= =?UTF-8?q?=E9=9D=A2=EF=BC=8C=E7=83=AD=E5=9B=BE=E8=BF=99=E9=87=8C=EF=BC=8C?= =?UTF-8?q?=E6=8F=8F=E7=82=B9=E9=80=89=E6=8B=A9=E9=83=A8=E4=BB=B6=EF=BC=8C?= =?UTF-8?q?=E8=BF=99=E9=87=8C=E9=9C=80=E8=A6=81=E8=83=BD=E5=A4=9F=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E9=83=A8=E4=BB=B6=E6=8F=8F=E8=BF=B0=EF=BC=8C=E7=8E=B0?= =?UTF-8?q?=E5=9C=A8=E6=98=AF=E6=90=9C=E7=B4=A2=E4=B8=8D=E4=BA=86=E9=83=A8?= =?UTF-8?q?=E4=BB=B6=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 From 2c5aa085acc4d8af22120d6b69c093ca4f9ba176 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:03:15 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20bug-505=20=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E7=AB=AF=EF=BC=8C=E9=83=A8=E4=BB=B6=E7=AE=A1=E7=90=86=E9=87=8C?= =?UTF-8?q?=E9=9D=A2=EF=BC=8C=E7=BC=96=E8=BE=91=E9=83=A8=E4=BB=B6=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E9=83=A8=E4=BB=B6=E6=8F=8F=E8=BF=B0=E5=A1=AB=E5=86=99?= =?UTF-8?q?=E5=AE=8C=E4=BF=9D=E5=AD=98=E5=90=8E=EF=BC=8C=E5=86=8D=E7=82=B9?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E8=BF=9B=E6=9D=A5=E8=BF=99=E9=87=8C=E5=B0=B1?= =?UTF-8?q?=E6=98=AF=E7=A9=BA=E7=9A=84=EF=BC=8C=E6=AF=8F=E6=AC=A1=E9=83=BD?= =?UTF-8?q?=E8=A6=81=E9=87=8D=E6=96=B0=E5=A1=AB=E5=86=99=E4=B8=80=E9=81=8D?= =?UTF-8?q?=E6=89=8D=E8=83=BD=20=E4=BF=9D=E5=AD=98=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nflg/mobilebroken/common/pojo/vo/ProductPartInfoVO.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nflg-mobilebroken-common/src/main/java/com/nflg/mobilebroken/common/pojo/vo/ProductPartInfoVO.java b/nflg-mobilebroken-common/src/main/java/com/nflg/mobilebroken/common/pojo/vo/ProductPartInfoVO.java index 71aa6398..ab102bc6 100644 --- a/nflg-mobilebroken-common/src/main/java/com/nflg/mobilebroken/common/pojo/vo/ProductPartInfoVO.java +++ b/nflg-mobilebroken-common/src/main/java/com/nflg/mobilebroken/common/pojo/vo/ProductPartInfoVO.java @@ -25,6 +25,11 @@ public class ProductPartInfoVO { */ private String attrName; + /** + * 描述 + */ + private String describe; + /** * 项 */