完善订单和活动 review 提到的问题

This commit is contained in:
puhui999
2023-09-20 16:06:29 +08:00
parent 52848d6341
commit 6ef94ade6a
27 changed files with 248 additions and 186 deletions

View File

@ -7,14 +7,13 @@ package cn.iocoder.yudao.module.promotion.api.seckill;
*/
public interface SeckillActivityApi {
// TODO @puhui999activityId 改成 id 好点哈;
/**
* 更新秒杀库存
*
* @param activityId 活动编号
* @param id 活动编号
* @param skuId sku 编号
* @param count 数量
*/
void updateSeckillStock(Long activityId, Long skuId, Integer count);
void updateSeckillStock(Long id, Long skuId, Integer count);
}