From 7187f98d41ec5f10c4979d63a3847c8e3a2b08a5 Mon Sep 17 00:00:00 2001 From: Derran Date: Mon, 2 Feb 2026 18:26:25 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=B4=E6=92=AD=E7=BA=A2=E5=A8=98=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../qniao/dam/query/product/impl/ProductQueryServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dating-agency-mall-server/src/main/java/com/qniao/dam/query/product/impl/ProductQueryServiceImpl.java b/dating-agency-mall-server/src/main/java/com/qniao/dam/query/product/impl/ProductQueryServiceImpl.java index 5626db2..fedeec3 100644 --- a/dating-agency-mall-server/src/main/java/com/qniao/dam/query/product/impl/ProductQueryServiceImpl.java +++ b/dating-agency-mall-server/src/main/java/com/qniao/dam/query/product/impl/ProductQueryServiceImpl.java @@ -140,7 +140,7 @@ public class ProductQueryServiceImpl implements ProductQueryService { } else { int count = purchaseProductRecordQueryService.countPurchasedBy(record.getProductSpecId(), userId); if (count < record.getPurchaseTimeLimit().getValue()) { - list.add(record); + resultList.add(record); } } }