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

taobao.go 3.3 KiB

1 year ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package md
  2. type TBFeatureStruct struct {
  3. CategoryID int `json:"category_id"`
  4. CategoryName string `json:"category_name"`
  5. ClickURL string `json:"click_url"`
  6. CommissionRate string `json:"commission_rate"`
  7. CouponAmount int `json:"coupon_amount"`
  8. CouponClickURL string `json:"coupon_click_url"`
  9. CouponEndTime string `json:"coupon_end_time"`
  10. CouponRemainCount int `json:"coupon_remain_count"`
  11. CouponShareURL string `json:"coupon_share_url"`
  12. CouponStartFee string `json:"coupon_start_fee"`
  13. CouponStartTime string `json:"coupon_start_time"`
  14. CouponTotalCount int `json:"coupon_total_count"`
  15. ItemDescription string `json:"item_description"`
  16. ItemID interface{} `json:"item_id"`
  17. JhsPriceUspList string `json:"jhs_price_usp_list"`
  18. LevelOneCategoryID int `json:"level_one_category_id"`
  19. LevelOneCategoryName string `json:"level_one_category_name"`
  20. Nick string `json:"nick"`
  21. PictURL string `json:"pict_url"`
  22. ReservePrice string `json:"reserve_price"`
  23. SellerID int64 `json:"seller_id"`
  24. ShopTitle string `json:"shop_title"`
  25. ShortTitle string `json:"short_title"`
  26. SmallImages struct {
  27. String []string `json:"string"`
  28. } `json:"small_images"`
  29. SubTitle string `json:"sub_title"`
  30. Title string `json:"title"`
  31. UserType int `json:"user_type"`
  32. Volume int `json:"volume"`
  33. WhiteImage string `json:"white_image"`
  34. ZkFinalPrice string `json:"zk_final_price"`
  35. }
  36. type TBSearchFeatureStruct struct {
  37. CategoryID int `json:"category_id"`
  38. CategoryName string `json:"category_name"`
  39. ClickURL string `json:"click_url"`
  40. CommissionRate string `json:"commission_rate"`
  41. CouponAmount string `json:"coupon_amount"`
  42. CouponClickURL string `json:"coupon_click_url"`
  43. CouponEndTime string `json:"coupon_end_time"`
  44. CouponRemainCount int `json:"coupon_remain_count"`
  45. CouponShareURL string `json:"coupon_share_url"`
  46. CouponStartFee string `json:"coupon_start_fee"`
  47. CouponStartTime string `json:"coupon_start_time"`
  48. CouponTotalCount int `json:"coupon_total_count"`
  49. ItemDescription string `json:"item_description"`
  50. ItemID interface{} `json:"item_id"`
  51. JhsPriceUspList string `json:"jhs_price_usp_list"`
  52. LevelOneCategoryID int `json:"level_one_category_id"`
  53. LevelOneCategoryName string `json:"level_one_category_name"`
  54. Nick string `json:"nick"`
  55. PictURL string `json:"pict_url"`
  56. ReservePrice string `json:"reserve_price"`
  57. SellerID int64 `json:"seller_id"`
  58. ShopTitle string `json:"shop_title"`
  59. ShortTitle string `json:"short_title"`
  60. SmallImages struct {
  61. String []string `json:"string"`
  62. } `json:"small_images"`
  63. SubTitle string `json:"sub_title"`
  64. Title string `json:"title"`
  65. UserType int `json:"user_type"`
  66. Volume int `json:"volume"`
  67. WhiteImage string `json:"white_image"`
  68. ZkFinalPrice string `json:"zk_final_price"`
  69. }