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

50 lines
2.0 KiB

  1. package yunyangwl_express
  2. type YunyangwlExpressChannel struct {
  3. Id string `json:"id"`
  4. Code string `json:"code"`
  5. Message string `json:"message"`
  6. Result []struct {
  7. OriginalPrice float64 `json:"originalPrice"`
  8. DisPrice float64 `json:"disPrice"`
  9. Freight float64 `json:"freight"`
  10. FreightInsured int `json:"freightInsured"`
  11. FreightHaocai int `json:"freightHaocai"`
  12. TotalFreight float64 `json:"totalFreight"`
  13. Channel string `json:"channel"`
  14. ChannelId string `json:"channelId"`
  15. ChannelExplain string `json:"channelExplain"`
  16. ChannelLogoUrl string `json:"channelLogoUrl"`
  17. AllowInsured int `json:"allowInsured"`
  18. InsuredRate float64 `json:"insuredRate"`
  19. Paozhong int `json:"paozhong"`
  20. PayType int `json:"payType"`
  21. ChargeType int `json:"chargeType"`
  22. ChannelType int `json:"channelType"`
  23. Comments string `json:"comments"`
  24. PriceComments string `json:"priceComments"`
  25. TagType string `json:"tagType"`
  26. TagCode int `json:"tagCode"`
  27. ExtFreightFlag bool `json:"extFreightFlag"`
  28. ExtFreight int `json:"extFreight"`
  29. Volume int `json:"volume"`
  30. ParseWeight float64 `json:"parseWeight"`
  31. LowWeight int `json:"lowWeight"`
  32. LimitWeight int `json:"limitWeight"`
  33. AppointTimes interface{} `json:"appointTimes"`
  34. PriceOne float64 `json:"priceOne"`
  35. PriceTwo interface{} `json:"priceTwo"`
  36. PriceThree interface{} `json:"priceThree"`
  37. PriceMore float64 `json:"priceMore"`
  38. Price struct {
  39. Id interface{} `json:"id"`
  40. User interface{} `json:"user"`
  41. PriceOne float64 `json:"priceOne"`
  42. PriceMore float64 `json:"priceMore"`
  43. PriceLevel interface{} `json:"priceLevel"`
  44. Allow interface{} `json:"allow"`
  45. } `json:"price"`
  46. } `json:"result"`
  47. Error interface{} `json:"error"`
  48. }