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

order.go 747 B

3 months ago
12345678910111213141516171819202122
  1. package didi
  2. type DidiOrder struct {
  3. ActivityId int64 `json:"activity_id"`
  4. CpaProfit int `json:"cpa_profit"`
  5. CpaType string `json:"cpa_type"`
  6. CpsProfit int `json:"cps_profit"`
  7. FailReason string `json:"fail_reason"`
  8. IsRisk int `json:"is_risk"`
  9. OpenUid string `json:"open_uid"`
  10. OrderId string `json:"order_id"`
  11. OrderStatus int `json:"order_status"`
  12. PayPrice int `json:"pay_price"`
  13. PayTime int `json:"pay_time"`
  14. ProductId int `json:"product_id"`
  15. PromotionId int64 `json:"promotion_id"`
  16. RefundPrice int `json:"refund_price"`
  17. RefundTime int `json:"refund_time"`
  18. SourceId string `json:"source_id"`
  19. Status int `json:"status"`
  20. Title string `json:"title"`
  21. }