From 0b9ebaaa965dc062cdb24acc533fbd8e259f484c Mon Sep 17 00:00:00 2001 From: wangw <1594593906@qq.com> Date: Thu, 18 Dec 2025 20:14:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=8F=E5=88=97=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../czg/service/account/service/impl/ShopInfoServiceImpl.java | 2 +- .../czg/service/market/service/impl/GbWareServiceImpl.java | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopInfoServiceImpl.java b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopInfoServiceImpl.java index 383db7de8..10214d758 100644 --- a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopInfoServiceImpl.java +++ b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopInfoServiceImpl.java @@ -63,7 +63,7 @@ import java.util.stream.Collectors; @Slf4j @DubboService @CacheConfig(cacheNames = "shopInfo") -public class ShopInfoServiceImpl extends ServiceImpl implements ShopInfoService { +public class ShopInfoServiceImpl extends ServiceImpl implements ShopInfoService, Serializable { @Resource private RabbitPublisher rabbitPublisher; @Resource diff --git a/cash-service/market-service/src/main/java/com/czg/service/market/service/impl/GbWareServiceImpl.java b/cash-service/market-service/src/main/java/com/czg/service/market/service/impl/GbWareServiceImpl.java index ce86f276f..f73c5f7df 100644 --- a/cash-service/market-service/src/main/java/com/czg/service/market/service/impl/GbWareServiceImpl.java +++ b/cash-service/market-service/src/main/java/com/czg/service/market/service/impl/GbWareServiceImpl.java @@ -17,6 +17,8 @@ import com.mybatisflex.spring.service.impl.ServiceImpl; import org.apache.dubbo.config.annotation.DubboReference; import org.springframework.stereotype.Service; +import java.io.Serializable; + /** * 拼团商品 服务层实现。 * @@ -24,7 +26,7 @@ import org.springframework.stereotype.Service; * @since 2025-12-15 */ @Service -public class GbWareServiceImpl extends ServiceImpl implements GbWareService { +public class GbWareServiceImpl extends ServiceImpl implements GbWareService, Serializable { @DubboReference private ShopInfoService shopInfoService;