relation.go 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package relation
  2. import (
  3. accv1 "go-common/app/service/main/account/api"
  4. relation "go-common/app/service/main/relation/model"
  5. )
  6. type Vip struct {
  7. Type int `json:"vipType"`
  8. DueDate int64 `json:"vipDueDate"`
  9. DueRemark string `json:"dueRemark"`
  10. AccessStatus int `json:"accessStatus"`
  11. VipStatus int `json:"vipStatus"`
  12. VipStatusWarn string `json:"vipStatusWarn"`
  13. }
  14. // Following is user followinng info.
  15. type Following struct {
  16. *relation.Following
  17. Uname string `json:"uname"`
  18. Face string `json:"face"`
  19. Sign string `json:"sign"`
  20. OfficialVerify accv1.OfficialInfo `json:"official_verify"`
  21. Vip Vip `json:"vip"`
  22. Live int `json:"live"`
  23. }
  24. type Tag struct {
  25. Mid int64 `json:"mid"`
  26. Uname string `json:"uname"`
  27. Face string `json:"face"`
  28. Sign string `json:"sign"`
  29. OfficialVerify accv1.OfficialInfo `json:"official_verify"`
  30. Vip Vip `json:"vip"`
  31. Live int `json:"live"`
  32. }
  33. // ByMTime implements sort.Interface for []model.Following based on the MTime field.
  34. type ByMTime []*relation.Following
  35. func (mt ByMTime) Len() int { return len(mt) }
  36. func (mt ByMTime) Swap(i, j int) { mt[i], mt[j] = mt[j], mt[i] }
  37. func (mt ByMTime) Less(i, j int) bool { return mt[i].MTime < mt[j].MTime }