【功能完善】商城: APP 完善积分商城活动下单

This commit is contained in:
puhui999
2024-10-04 13:46:20 +08:00
parent d7236068b9
commit 67809be46d
11 changed files with 223 additions and 3 deletions

View File

@@ -21,5 +21,22 @@ public interface PointActivityApi {
*/
PointValidateJoinRespDTO validateJoinPointActivity(Long activityId, Long skuId, Integer count);
/**
* 更新积分商城商品库存(减少)
*
* @param id 活动编号
* @param skuId sku 编号
* @param count 数量(正数)
*/
void updatePointStockDecr(Long id, Long skuId, Integer count);
/**
* 更新积分商城商品库存(增加)
*
* @param id 活动编号
* @param skuId sku 编号
* @param count 数量(正数)
*/
void updatePointStockIncr(Long id, Long skuId, Integer count);
}