对接新供应链-唯品尚

This commit is contained in:
zhongqiang
2025-06-18 16:21:45 +08:00
parent 12e627aac6
commit ebe8aff954
3 changed files with 9 additions and 9 deletions

View File

@@ -33,10 +33,10 @@ type CreateOrderData struct {
}
type SkuData struct {
GoodSpecId string `json:"goodSpecId"` //商品ID(c_goods_id)
GoodsId string `json:"goodsId"` //商品ID(c_father_goods_id)
GoodName string `json:"goodName"` //商品名称
Num string `json:"num"` //数量
GoodSpecId string `json:"goodSpecId"` //商品ID(c_goods_id)
GoodsId string `json:"goodsId"` //商品ID(c_father_goods_id)
GoodName string `json:"goodName"` //商品名称
Num interface{} `json:"num"` //数量
//Num int `json:"num"` //数量
Price string `json:"price"` //单价
}