useractievement.go 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package like
  2. // MissionAward .
  3. type MissionAward struct {
  4. ID int64 `json:"id"`
  5. Award int64 `json:"award"`
  6. Image string `json:"image"`
  7. Name string `json:"name"`
  8. }
  9. // MissionFriends .
  10. type MissionFriends struct {
  11. Mid int64 `json:"mid"`
  12. Name string `json:"name"`
  13. Face string `json:"face"`
  14. }
  15. // MissionRank .
  16. type MissionRank struct {
  17. Lid int64 `json:"lid"`
  18. Score int64 `json:"score"`
  19. Rank int64 `json:"rank"`
  20. }
  21. // MissionLikeAct .
  22. type MissionLikeAct struct {
  23. Mlid int64 `json:"mlid"`
  24. Lottery *Lottery `json:"lottery"`
  25. }
  26. // Lottery .
  27. type Lottery struct {
  28. Code int `json:"code"`
  29. Msg string `json:"msg"`
  30. Data struct {
  31. Name string `json:"name"`
  32. Sponsors string `json:"sponsors"`
  33. SponsorsLogo string `json:"sponsors_logo"`
  34. GiftID int64 `json:"gift_id"`
  35. MessageTitle string `json:"message_title"`
  36. MessageContent string `json:"message_content"`
  37. } `json:"data"`
  38. }
  39. // MissionInfo .
  40. type MissionInfo struct {
  41. HasHelp int64 `json:"has_help"`
  42. HasBuff int64 `json:"has_buff"`
  43. }