智盟项目
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

md_tpdaren.go 1.4 KiB

1 yıl önce
12345678910111213141516171819202122232425262728293031323334353637
  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 TpdarenList struct {
  25. Title string `json:"title"`
  26. Description string `json:"description"`
  27. ChannelTheaterId int `json:"channel_theater_id"`
  28. DouyinTheaterId int `json:"douyin_theater_id"`
  29. KuaishouTheaterId int `json:"kuaishou_theater_id"`
  30. IsEnd bool `json:"is_end"`
  31. Episode int `json:"episode"`
  32. PayEpisode int `json:"pay_episode"`
  33. Material string `json:"material"`
  34. ImageUrl string `json:"image_url"`
  35. OnlineTime string `json:"online_time"`
  36. }