客户端增加扣减库存

This commit is contained in:
19991905653
2024-04-09 17:24:44 +08:00
parent bc4c3e6975
commit 49ed813f63
5 changed files with 86 additions and 19 deletions

View File

@@ -29,4 +29,8 @@ public interface TbProductSkuMapper {
TbProductSkuWithBLOBs selectByProduct(@Param("productId") Integer productId);
void updateByskuId(@Param("productSkuId") Integer productSkuId,@Param("num") Integer num);
void updateByskuIdSub(@Param("skuId")Integer skuId, @Param("num")Integer num);
void updateStockNum(@Param("skuId") Integer skuId, @Param("num") Integer num);
}