From 2504fa66edf977f68422c24437c22a471c190b7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Wed, 2 Jul 2025 17:28:55 +0800 Subject: [PATCH 1/6] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E4=BA=A7=E5=93=81?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E8=8E=B7=E5=8F=96=E4=B8=8B=E6=8B=89=E7=9A=84?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=88=97=E8=A1=A8=E6=B2=A1=E6=9C=89=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E7=B3=BB=E5=88=97=E6=89=B9=E6=AC=A1=E5=8F=B7=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/ProductTypeMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nflg-mobilebroken-repository/src/main/resources/mapper/ProductTypeMapper.xml b/nflg-mobilebroken-repository/src/main/resources/mapper/ProductTypeMapper.xml index 60af77ca..974f375f 100644 --- a/nflg-mobilebroken-repository/src/main/resources/mapper/ProductTypeMapper.xml +++ b/nflg-mobilebroken-repository/src/main/resources/mapper/ProductTypeMapper.xml @@ -80,7 +80,7 @@ + SELECT pmpi.index_name, pmpi.`name`, pmpi.`value` + FROM product_model_params pmp + INNER JOIN product_model_params_item pmpi ON pmp.id = pmpi.model_params_id + WHERE pmp.model_id = #{modelId} + AND pmp.state = 1 + AND pmpi.compare = 1 + AND pmpi.language_code = #{language} + ORDER BY pmpi.id + diff --git a/nflg-mobilebroken-repository/src/main/resources/mapper/ProductSeriesMapper.xml b/nflg-mobilebroken-repository/src/main/resources/mapper/ProductSeriesMapper.xml index 6b214021..ccb3704e 100644 --- a/nflg-mobilebroken-repository/src/main/resources/mapper/ProductSeriesMapper.xml +++ b/nflg-mobilebroken-repository/src/main/resources/mapper/ProductSeriesMapper.xml @@ -31,7 +31,7 @@ FROM product_series ps LEFT JOIN product_series_info psi ON psi.series_id = ps.id AND psi.language_code = #{language} WHERE ps.state = 1 AND ps.enable = 1 AND ps.module_id = #{moduleId} - ORDER BY ps.sort DESC + ORDER BY ps.sort