25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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"`
- }
|