From dce1e83ec27a066ebc6c17a4ac6d03c9ad6ff703 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期五, 12 十二月 2025 14:21:39 +0800
Subject: [PATCH] 经销商管理

---
 server/dmmall_service/src/main/java/com/doumee/service/business/impl/ShopServiceImpl.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/server/dmmall_service/src/main/java/com/doumee/service/business/impl/ShopServiceImpl.java b/server/dmmall_service/src/main/java/com/doumee/service/business/impl/ShopServiceImpl.java
index e797e19..bf94f58 100644
--- a/server/dmmall_service/src/main/java/com/doumee/service/business/impl/ShopServiceImpl.java
+++ b/server/dmmall_service/src/main/java/com/doumee/service/business/impl/ShopServiceImpl.java
@@ -539,16 +539,16 @@
         memberCoupon.setShopId(shopId);
         memberCoupon.setType(Constants.ZERO);
         memberCoupon.setStatus(Constants.ONE);
-        Integer shopCouponUseCount = memberCouponService.count(memberCoupon);
+        long shopCouponUseCount = memberCouponService.count(memberCoupon);
 
         ShopFollow shopFollow = new ShopFollow();
         shopFollow.setObjId(shopId);
         shopFollow.setObjType(Constants.ZERO);
-        Integer shopFansCount = shopFollowService.count(shopFollow);
+        long shopFansCount = shopFollowService.count(shopFollow);
 
         ShopNews shopNews = new ShopNews();
         shopNews.setShopId(shopId);
-        Integer shopNewCount = shopNewsService.count(shopNews);
+        long shopNewCount = shopNewsService.count(shopNews);
         ShopDataStatisticsDTO shopDataStatisticsDTO = new ShopDataStatisticsDTO();
         shopDataStatisticsDTO.setShopCouponUseCount(shopCouponUseCount)
                 .setShopFansCount(shopFansCount).setShopNewCount(shopNewCount);

--
Gitblit v1.9.3