1. 商品信息变动刷新库存

2. 商品信息变动发生Mq消息
This commit is contained in:
Tankaikai
2025-03-04 15:47:47 +08:00
parent e4648b1e56
commit 6197ba5707
3 changed files with 25 additions and 13 deletions

View File

@@ -31,8 +31,9 @@ public interface ProductRpcService {
/**
* 订单退菜或退款后回退库存
*
* @param shopId 店铺id
* @param orderId 订单ID
* @param dataList 库存恢复数据
*/
void orderRefundReturnStock(List<Map<String, Object>> dataList);
void orderRefundReturnStock(Long shopId, Long orderId, List<Map<String, Object>> dataList);
}