智盟项目
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.

tik_tok_local_life.go 1.2 KiB

1 year ago
12345678910111213141516171819202122232425262728293031323334
  1. package md
  2. type TikTokLocalLifeOrder struct {
  3. Cursor string `json:"cursor"`
  4. HasMore bool `json:"has_more"`
  5. ItemOrders []TikTokLocalLifeOrderDetail `json:"item_orders"`
  6. }
  7. type TikTokLocalLifeOrderDetail struct {
  8. Status int `json:"status"`
  9. UpdateTime int `json:"update_time"`
  10. CommissionInfo struct {
  11. AllSettleRemitFinish bool `json:"all_settle_remit_finish"`
  12. CommissionRate int `json:"commission_rate"`
  13. DistributionInfo struct {
  14. ExternalInfo string `json:"external_info"`
  15. Pid string `json:"pid"`
  16. } `json:"distribution_info"`
  17. EstimateCommission int `json:"estimate_commission"`
  18. SettleInfoMap map[string]interface{} `json:"settle_info_map"`
  19. } `json:"commission_info"`
  20. ItemOrderId string `json:"item_order_id"`
  21. PayAmount int `json:"pay_amount"`
  22. PayTime int `json:"pay_time"`
  23. ProductList []struct {
  24. SkuId int64 `json:"sku_id"`
  25. Count int `json:"count"`
  26. Img string `json:"img"`
  27. Name string `json:"name"`
  28. ProductId int64 `json:"product_id"`
  29. } `json:"product_list"`
  30. RootOrderInfo struct {
  31. RootOrderId string `json:"root_order_id"`
  32. } `json:"root_order_info"`
  33. }