- package md
-
- type GoodsPayParam struct {
- GoodsInfo []GoodsInfo `json:"goods_info"`
- EnterpriseId string `json:"enterprise_id"`
- BuyInfo BuyInfo `json:"buy_info"`
- }
- 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"`
- }
|