You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FuShouXian-Backend/module/itemGoodsSkuPrice/ItemGoodsSkuPrice.go

18 lines
682 B

package itemGoodsSkuPrice
func (ItemGoodsSkuPrice) TableName() string {
return "item_goods_sku_price"
}
// ItemGoodsSkuPrice 结构体表示商品 SKU 的价格信息中的具体项
type ItemGoodsSkuPrice struct {
ID int64 `json:"id"` // 唯一标识
ActivityID int64 `json:"activity_id"` // 活动的唯一标识
SkuPriceID int64 `json:"sku_price_id"` // SKU 价格的唯一标识
GoodsID int64 `json:"goods_id"` // 商品的唯一标识
Stock int64 `json:"stock"` // 库存
Sales int64 `json:"sales"` // 销量
Price string `json:"price"` // 价格
Status string `json:"status"` // 状态
}