topic.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package model
  2. import (
  3. "errors"
  4. "go-common/library/time"
  5. )
  6. const (
  7. TopicCacheMiss = -1
  8. // http mode
  9. HttpMode4Http = 1 // eg "http://a.bilibili.com"
  10. HttpMode4Https = 2 // eg "https://a.bilibili.com"
  11. HttpMode4Both = 3 // eg "//a.bilibili.com"
  12. )
  13. var ErrTopicRequest = errors.New("Get topic info request error")
  14. // TopicsResult topics.
  15. type TopicsResult struct {
  16. Code int `json:"code"`
  17. Data struct {
  18. List []*Topic `json:"list"`
  19. } `json:"data"`
  20. }
  21. type TopicFav struct {
  22. ID int64 `json:"id"`
  23. Mid int64 `json:"mid"`
  24. TpID int64 `json:"tpid"`
  25. Ctime time.Time `json:"ctime"`
  26. Mtime time.Time `json:"mtime"`
  27. }
  28. type Topic struct {
  29. ID int64 `json:"id"`
  30. TpID int64 `json:"tp_id"`
  31. MID int64 `json:"mid"`
  32. FavAt time.Time `json:"fav_at"`
  33. State int64 `json:"state"`
  34. Stime string `json:"stime"`
  35. Etime string `json:"etime"`
  36. Ctime string `json:"ctime"`
  37. Mtime string `json:"mtime"`
  38. Name string `json:"name"`
  39. Author string `json:"author"`
  40. PCUrl string `json:"pc_url"`
  41. H5Url string `json:"h5_url"`
  42. PCCover string `json:"pc_cover"`
  43. H5Cover string `json:"h5_cover"`
  44. Rank int64 `json:"rank"`
  45. PageName string `json:"page_name"`
  46. Plat int64 `json:"plat"`
  47. Desc string `json:"desc"`
  48. Click int64 `json:"click"`
  49. TPType int64 `json:"type"`
  50. Mold int64 `json:"mold"`
  51. Series int64 `json:"series"`
  52. Dept int64 `json:"dept"`
  53. ReplyID int64 `json:"reply_id"`
  54. }
  55. type TopicList struct {
  56. PageNum int `json:"page"`
  57. PageSize int `json:"pagesize"`
  58. Total int64 `json:"total"`
  59. List []*Topic `json:"list"`
  60. }