search.go 565 B

1234567891011121314151617181920212223242526
  1. package model
  2. // VideoSearch 视频搜索json
  3. type VideoSearch struct {
  4. ID int32 `json:"id"`
  5. Title string `json:"title"`
  6. Play int32 `json:"play"`
  7. Review int32 `json:"review"`
  8. PubTime int32 `json:"pubtime"`
  9. }
  10. // UserSearch 用户搜索json
  11. type UserSearch struct {
  12. ID int64 `json:"id"`
  13. Uname string `json:"uname"`
  14. Fans int64 `json:"fans"`
  15. Article int64 `json:"article"`
  16. }
  17. // Sug Sug文本结构
  18. type Sug struct {
  19. ID int64 `json:"id"`
  20. Term string `json:"term"`
  21. Type string `json:"type"`
  22. Score int64 `json:"score"`
  23. }