mine.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package space
  2. import (
  3. accv1 "go-common/app/service/main/account/api"
  4. accmdl "go-common/app/service/main/account/model"
  5. )
  6. // Mine my center struct
  7. type Mine struct {
  8. Mid int64 `json:"mid"`
  9. Name string `json:"name"`
  10. Face string `json:"face"`
  11. Coin float64 `json:"coin"`
  12. BCoin float64 `json:"bcoin"`
  13. Sex int32 `json:"sex"`
  14. Rank int32 `json:"rank"`
  15. Silence int32 `json:"silence"`
  16. EndTime int64 `json:"end_time,omitempty"`
  17. ShowVideoup int `json:"show_videoup"`
  18. ShowCreative int `json:"show_creative"`
  19. Level int32 `json:"level"`
  20. VipType int32 `json:"vip_type"`
  21. AudioType int `json:"audio_type"`
  22. Dynamic int64 `json:"dynamic"`
  23. Following int64 `json:"following"`
  24. Follower int64 `json:"follower"`
  25. NewFollowers int64 `json:"new_followers"`
  26. Official struct {
  27. Type int8 `json:"type"`
  28. Desc string `json:"desc"`
  29. } `json:"official_verify"`
  30. Pendant *Pendant `json:"pendant,omitempty"`
  31. Sections []*Section `json:"sections,omitempty"`
  32. IpadSections []*SectionItem `json:"ipad_sections,omitempty"`
  33. IpadUpperSections []*SectionItem `json:"ipad_upper_sections,omitempty"`
  34. }
  35. // Section for mine page, like 【个人中心】【我的服务】
  36. type Section struct {
  37. Title string `json:"title"`
  38. Items []*SectionItem `json:"items"`
  39. }
  40. // SectionItem like 【离线缓存】 【历史记录】,a part of section
  41. type SectionItem struct {
  42. Title string `json:"title"`
  43. URI string `json:"uri"`
  44. Icon string `json:"icon"`
  45. NeedLogin int8 `json:"need_login,omitempty"`
  46. RedDot int8 `json:"red_dot,omitempty"`
  47. }
  48. // Myinfo myinfo
  49. type Myinfo struct {
  50. Mid int64 `json:"mid"`
  51. Name string `json:"name"`
  52. Sign string `json:"sign"`
  53. Coins float64 `json:"coins"`
  54. Birthday string `json:"birthday"`
  55. Face string `json:"face"`
  56. Sex int `json:"sex"`
  57. Level int32 `json:"level"`
  58. Rank int32 `json:"rank"`
  59. Silence int32 `json:"silence"`
  60. EndTime int64 `json:"end_time,omitempty"`
  61. Vip accmdl.VipInfo `json:"vip"`
  62. EmailStatus int32 `json:"email_status"`
  63. TelStatus int32 `json:"tel_status"`
  64. Official accv1.OfficialInfo `json:"official"`
  65. Identification int32 `json:"identification"`
  66. Pendant *Pendant `json:"pendant,omitempty"`
  67. }
  68. // MineParam struct
  69. type MineParam struct {
  70. MobiApp string `form:"mobi_app"`
  71. Device string `form:"device"`
  72. Build int `form:"build"`
  73. Platform string `form:"platform"`
  74. Mid int64 `form:"mid"`
  75. Filtered string `form:"filtered"`
  76. }
  77. // Pendant struct
  78. type Pendant struct {
  79. Image string `json:"image"`
  80. }