history.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package history
  2. // HisParam fro history
  3. type HisParam struct {
  4. MobiApp string `form:"mobi_app"`
  5. Device string `form:"device"`
  6. Build int64 `form:"build"`
  7. Platform string `form:"platform"`
  8. Pn int `form:"pn"`
  9. Ps int `form:"ps"`
  10. Mid int64 `form:"mid"`
  11. Max int64 `form:"max"`
  12. MaxTP int8 `form:"max_tp"`
  13. Business string `form:"business"`
  14. }
  15. // LiveParam statue param
  16. type LiveParam struct {
  17. RoomIDs string `form:"room_ids"`
  18. }
  19. // DelParam del param
  20. type DelParam struct {
  21. Mid int64 `form:"mid"`
  22. Boids []string `form:"boids,split" validate:"min=1"`
  23. }
  24. // ClearParam clear param
  25. type ClearParam struct {
  26. Mid int64 `form:"mid"`
  27. Business string `form:"business"`
  28. }
  29. // ListRes for history
  30. type ListRes struct {
  31. Title string `json:"title"`
  32. Covers []string `json:"covers,omitempty"`
  33. Cover string `json:"cover,omitempty"`
  34. URI string `json:"uri"`
  35. History struct {
  36. Oid int64 `json:"oid"`
  37. Tp int8 `json:"tp"`
  38. Cid int64 `json:"cid,omitempty"`
  39. Page int32 `json:"page,omitempty"`
  40. Part string `json:"part,omitempty"`
  41. Business string `json:"business"`
  42. } `json:"history"`
  43. Videos int64 `json:"videos,omitempty"`
  44. Name string `json:"name,omitempty"`
  45. Mid int64 `json:"mid,omitempty"`
  46. Goto string `json:"goto"`
  47. Badge string `json:"badge,omitempty"`
  48. ViewAt int64 `json:"view_at"`
  49. Progress int64 `json:"progress,omitempty"`
  50. Duration int64 `json:"duration,omitempty"`
  51. ShowTitle string `json:"show_title,omitempty"`
  52. TagName string `json:"tag_name,omitempty"`
  53. LiveStatus int `json:"live_status,omitempty"`
  54. Current string `json:"current,omitempty"`
  55. Total string `json:"total,omitempty"`
  56. NewDesc string `json:"new_desc,omitempty"`
  57. IsFinish int8 `json:"is_finish,omitempty"`
  58. }
  59. // PGCRes for history
  60. type PGCRes struct {
  61. EpID int64 `json:"ep_id"`
  62. Cover string `json:"cover"`
  63. URI string `json:"uri"`
  64. Title string `json:"title"`
  65. ShowTitle string `json:"show_title"`
  66. Season struct {
  67. Title string `json:"title"`
  68. } `json:"season"`
  69. }
  70. // ListCursor for history
  71. type ListCursor struct {
  72. Tab []*BusTab `json:"tab"`
  73. List []*ListRes `json:"list"`
  74. Cursor *Cursor `json:"cursor"`
  75. }
  76. // BusTab business tab
  77. type BusTab struct {
  78. Business string `json:"business"`
  79. Name string `json:"name"`
  80. }
  81. // Cursor for history
  82. type Cursor struct {
  83. Max int64 `json:"max"`
  84. MaxTP int8 `json:"max_tp"`
  85. Ps int `json:"ps"`
  86. }