面包店
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.

goods_pay.go 566 B

123456789101112131415161718192021
  1. package md
  2. type GoodsPayParam struct {
  3. GoodsInfo []GoodsInfo `json:"goods_info"`
  4. EnterpriseId string `json:"enterprise_id"`
  5. BuyInfo BuyInfo `json:"buy_info"`
  6. }
  7. type BuyInfo struct {
  8. Name string `json:"name"`
  9. Phone string `json:"phone"`
  10. Date string `json:"date"`
  11. Time string `json:"time"`
  12. Address string `json:"address"`
  13. }
  14. type GoodsInfo struct {
  15. GoodsId string `json:"goods_id"`
  16. SkuId string `json:"sku_id"`
  17. SkuCode string `json:"sku_code"`
  18. Num string `json:"num"`
  19. GoodsTitle string `json:"goods_title"`
  20. }