重命名商品库存结构体

This commit is contained in:
yuguojian 2024-12-06 16:50:52 +08:00
parent bd2af34fb8
commit 4ec702af0b

View File

@ -13,7 +13,7 @@ const (
StockStateDecrease StockState = "reduce_inventory" //减少库存
)
type ProductsChange struct {
type ProductsChangeStock struct {
OrderId uint `json:"order_id"`
State StockState `json:"state"`
SkuItems []*SkuItem