第三方api接口
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.

42 line
1.8 KiB

  1. package md
  2. type MeituanFenXiaoGeoInfo struct {
  3. CityId int `json:"cityId"`
  4. Lng float64 `json:"lng"`
  5. Lat float64 `json:"lat"`
  6. }
  7. type MeituanFenXiaoOrderResult struct {
  8. RecordCount int `json:"recordCount"`
  9. Page int `json:"page"`
  10. PageSize int `json:"pageSize"`
  11. Records []struct {
  12. UtmSource int `json:"utmSource"`
  13. UtmMedium string `json:"utmMedium"`
  14. DisplayOrderId string `json:"displayOrderId"`
  15. OrderItemId string `json:"orderItemId"`
  16. DealName string `json:"dealName"`
  17. DealPicUrl string `json:"dealPicUrl"`
  18. ActualItemAmount int `json:"actualItemAmount"`
  19. DealOriginPrice int `json:"dealOriginPrice"`
  20. DealMerchantAllowance int `json:"dealMerchantAllowance"`
  21. DealPlatformAllowance int `json:"dealPlatformAllowance"`
  22. PoiUuid string `json:"poiUuid"`
  23. ShopName string `json:"shopName"`
  24. PoiBrandName string `json:"poiBrandName"`
  25. ShopCityName string `json:"shopCityName"`
  26. PoiCate0 string `json:"poiCate0"`
  27. PoiCate1 string `json:"poiCate1"`
  28. TransactionTime string `json:"transactionTime"`
  29. TransactionType int `json:"transactionType"`
  30. TransactionAmount int `json:"transactionAmount"`
  31. MediaName string `json:"mediaName"`
  32. PromotionName string `json:"promotionName"`
  33. OrderMtUserId string `json:"orderMtUserId"`
  34. EstimatedCommission int `json:"estimatedCommission"`
  35. CommissionRatio float64 `json:"commissionRatio"`
  36. SettleStatus int `json:"settleStatus"`
  37. ExtraInfo string `json:"extraInfo"`
  38. } `json:"records"`
  39. PositionIndex string `json:"positionIndex"`
  40. }