This commit is contained in:
邹宗楠
2025-02-07 17:31:32 +08:00
parent 5797baa6e7
commit dab1ae4344

View File

@@ -86,8 +86,8 @@ type OrderSkuExt struct {
DescImg string `orm:"size(255)" json:"descImg"` // 商品详情图片描述
Upc string `json:"upc"` //
Price int64 `json:"price"` // 商品库价格
LocationCode2 string `json:"locationCode2"` // 本地商品货架码
SkuStock int64 `json:"skuStock"` // 商品库存
LocationCode2 string `orm:"column(locationCode2)" json:"locationCode2"` // 本地商品货架码
SkuStock int64 `orm:"column(skuStock)" json:"skuStock"` // 商品库存
// RealEarningPrice int64 `json:"realEarningPrice"` // 实际单品结算给门店老板钱
}