From 04445ea9ef79370e1e2f0dfd1c2e731de69fad7f Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Tue, 29 Jun 2021 18:01:57 +0800
Subject: [PATCH] fix

---
 gc-shop/src/main/resources/mapper/shop/ScoreGoodsMapper.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gc-shop/src/main/resources/mapper/shop/ScoreGoodsMapper.xml b/gc-shop/src/main/resources/mapper/shop/ScoreGoodsMapper.xml
index fd788a5..10496b2 100644
--- a/gc-shop/src/main/resources/mapper/shop/ScoreGoodsMapper.xml
+++ b/gc-shop/src/main/resources/mapper/shop/ScoreGoodsMapper.xml
@@ -41,7 +41,7 @@
             a.*,
             sum(b.quantity) quantity,
             sum(b.stock) stock,
-            max(b.present_price) maxPrice
+            min(b.present_price) minPrice
         from xzx_score_goods a
         inner join xzx_score_goods_sku b on a.id=b.goods_id and b.del_flag=0
         <where>
@@ -73,7 +73,7 @@
             order by quantity desc
         </if>
         <if test="record.sort == 3">
-            order by maxPrice desc
+            order by minPrice desc
         </if>
     </select>
 

--
Gitblit v1.9.1