开关库存、移除商品库存缓存

This commit is contained in:
Tankaikai
2025-04-16 18:34:38 +08:00
parent 2688efc638
commit 450cc693d0
5 changed files with 38 additions and 12 deletions

View File

@@ -67,7 +67,7 @@ public class ShopProductSkuInfoVo implements Serializable {
*/
private BigDecimal realSalesNumber;
/**
* 是否售罄
* 是否售罄同isSoldStock
*/
private Integer isPauseSale;
/**
@@ -75,11 +75,19 @@ public class ShopProductSkuInfoVo implements Serializable {
*/
private Integer stockNumber;
/**
* 是否售罄
* 是否售罄isPauseSale
*/
private Integer isSoldStock;
/**
* 是否上架
* 是否上架(同isGrounding)
*/
private Integer isSale;
/**
* 是否开启库存
*/
private Integer isStock;
/**
* 是否上架(同isSale)
*/
private Integer isGrounding;
}

View File

@@ -113,4 +113,8 @@ public class ShopProductVo implements Serializable {
* 店铺id
*/
private Long shopId;
/**
* 是否开启库存
*/
private Integer isStock;
}