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

преди 1 година
преди 1 година
преди 1 година
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package md
  2. type Tpdaren struct {
  3. Id int `json:"id"`
  4. Description string `json:"description"`
  5. Episode int `json:"episode"`
  6. ImageUrl string `json:"image_url"`
  7. IsEnd string `json:"is_end"`
  8. IsHot int `json:"is_hot"`
  9. PayEpisode int `json:"pay_episode"`
  10. Material string `json:"material"`
  11. OnlineTime string `json:"online_time"`
  12. Type string `json:"type"`
  13. Title string `json:"title"`
  14. Data string `json:"data"`
  15. VideoType string `json:"video_type"`
  16. ChannelTheaterId int `json:"channel_theater_id"`
  17. DouyinTheaterId int `json:"douyin_theater_id"`
  18. KuaishouTheaterId int `json:"kuaishou_theater_id"`
  19. UpdateTime int `json:"update_time"`
  20. Time int `json:"time"`
  21. ShareTitle string `json:"share_title"`
  22. Appid string `json:"appid"`
  23. }
  24. type TpdarenNew struct {
  25. Id string `json:"id"`
  26. Description string `json:"description"`
  27. Cate string `json:"cate"`
  28. Episode int `json:"episode"`
  29. ImageUrl string `json:"image_url"`
  30. IsEnd int `json:"is_end"`
  31. IsClose int `json:"is_close"`
  32. IsHot int `json:"is_hot"`
  33. PayEpisode int `json:"pay_episode"`
  34. Material string `json:"material"`
  35. OnlineTime string `json:"online_time"`
  36. Type string `json:"type"`
  37. Title string `json:"title"`
  38. Data string `json:"data"`
  39. VideoType string `json:"video_type"`
  40. ChannelTheaterId int `json:"channel_theater_id"`
  41. DouyinTheaterId int `json:"douyin_theater_id"`
  42. KuaishouTheaterId int `json:"kuaishou_theater_id"`
  43. UpdateTime int `json:"update_time"`
  44. Time int `json:"time"`
  45. ShareTitle string `json:"share_title"`
  46. Appid string `json:"appid"`
  47. }
  48. type TpdarenList struct {
  49. Title string `json:"title"`
  50. Description string `json:"description"`
  51. ChannelTheaterId int `json:"channel_theater_id"`
  52. DouyinTheaterId int `json:"douyin_theater_id"`
  53. KuaishouTheaterId int `json:"kuaishou_theater_id"`
  54. IsEnd bool `json:"is_end"`
  55. Episode int `json:"episode"`
  56. PayEpisode int `json:"pay_episode"`
  57. Material string `json:"material"`
  58. ImageUrl string `json:"image_url"`
  59. OnlineTime string `json:"online_time"`
  60. }