Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- package md
-
- type GoodsPayParam struct {
- GoodsInfo []GoodsInfo `json:"goods_info"`
- EnterpriseId string `json:"enterprise_id"`
- BuyInfo BuyInfo `json:"buy_info"`
- Oid string `json:"oid"`
- MakeDate string `json:"make_date"`
- }
- type BuyInfo struct {
- Name string `json:"name"`
- Phone string `json:"phone"`
- Date string `json:"date"`
- Time string `json:"time"`
- Address string `json:"address"`
- }
- type GoodsInfo struct {
- GoodsId string `json:"goods_id"`
- SkuId string `json:"sku_id"`
- SkuCode string `json:"sku_code"`
- Num string `json:"num"`
- GoodsTitle string `json:"goods_title"`
- }
|