author.go 470 B

12345678910111213141516171819202122
  1. package model
  2. // RecommendAuthor .
  3. type RecommendAuthor struct {
  4. UpID int64 `json:"up_id"`
  5. RecReason string `json:"rec_reason"`
  6. RecType int `json:"rec_type"`
  7. Tid int `json:"tid"`
  8. Stid int `json:"second_tid"`
  9. }
  10. // RecommendAuthors .
  11. type RecommendAuthors struct {
  12. Count int `json:"count"`
  13. Authors []*RecAuthor `json:"authors"`
  14. }
  15. // RecAuthor .
  16. type RecAuthor struct {
  17. *AccountCard
  18. RecReason string `json:"rec_reason"`
  19. }