面包店
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
566 B

  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. }