newbie.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package model
  2. import (
  3. libTime "go-common/library/time"
  4. )
  5. // const text
  6. const (
  7. // TimeLayout time layout
  8. TimeLayout = "2006-01-02 15:04:05"
  9. )
  10. // NewbieLetterReq newbie request
  11. type NewbieLetterReq struct {
  12. Aid int64 `form:"aid" validate:"required"`
  13. Mid int64
  14. }
  15. // Category category
  16. type Category struct {
  17. ID int64 `json:"id"`
  18. Pid int64 `json:"pid"`
  19. Name string `json:"name"`
  20. }
  21. // CategoriesRes category result
  22. type CategoriesRes struct {
  23. Code int `json:"code"`
  24. Data map[int64]*Category `json:"data"`
  25. Message string `json:"message"`
  26. }
  27. // Activity activity
  28. type Activity struct {
  29. ID int64 `json:"-"`
  30. AndroidUrl string `json:"-"`
  31. H5Cover string `json:"-"`
  32. ActUrl string `json:"act_url"`
  33. IosUrl string `json:"-"`
  34. Cover string `json:"cover"`
  35. Type int32 `json:"type"`
  36. }
  37. // ActivitiesRes activities result
  38. type ActivitiesRes struct {
  39. Code int `json:"code"`
  40. Data []*Activity `json:"data"`
  41. Message string `json:"message"`
  42. TTL int64 `json:"ttl"`
  43. }
  44. // VideoUpArchive video up archive
  45. type VideoUpArchive struct {
  46. Aid int64 `json:"aid"`
  47. Mid int64 `json:"mid"`
  48. Tid int64 `json:"tid"`
  49. Title string `json:"title"`
  50. PTime int64 `json:"ptime"`
  51. }
  52. // VideoUpVideo video up video
  53. /*type VideoUpVideo struct {
  54. }*/
  55. // VideoUp video up
  56. type VideoUp struct {
  57. Archive *VideoUpArchive `json:"archive"`
  58. //Videos []*VideoUpVideo `json:"videos"`
  59. }
  60. // VideoUpRes video up result
  61. type VideoUpRes struct {
  62. Code int `json:"code"`
  63. Data *VideoUp `json:"data"`
  64. Message string `json:"message"`
  65. }
  66. // Relation relation
  67. type Relation struct {
  68. Mid int64 `json:"mid"`
  69. Attribute int `json:"attribute"`
  70. Face string `json:"face"`
  71. Name string `json:"name"`
  72. }
  73. // RelationsRes relation result
  74. type RelationsRes struct {
  75. Code int `json:"code"`
  76. Data map[int64]*Relation `json:"data"`
  77. Message string `json:"message"`
  78. TTL int64 `json:"ttl"`
  79. }
  80. // RecommendUp table recommend up
  81. type RecommendUp struct {
  82. ID int64 `json:"id"`
  83. Mid int64 `json:"mid"`
  84. Tid int64 `json:"tid"`
  85. SubTid int64 `json:"sub_tid"`
  86. Reason string `json:"reason"`
  87. Operator string `json:"operator"`
  88. CTime libTime.Time `json:"ctime"`
  89. MTime libTime.Time `json:"mtime"`
  90. }
  91. // NewbieLetterArchive newbie letter archive
  92. type NewbieLetterArchive struct {
  93. Mid int64 `json:"-"`
  94. Tid int64 `json:"-"`
  95. Title string `json:"title"`
  96. PTime string `json:"ptime"`
  97. }
  98. // NewbieLetterUpInfo newbie letter up info
  99. type NewbieLetterUpInfo struct {
  100. Mid int64 `json:"mid"`
  101. Name string `json:"name"`
  102. }
  103. // NewbieLetterRes newbie letter result
  104. type NewbieLetterRes struct {
  105. UperInfo *NewbieLetterUpInfo `json:"uper_info"`
  106. Activities []*Activity `json:"activities"`
  107. Relations []*Relation `json:"relations"`
  108. Archive *NewbieLetterArchive `json:"archive"`
  109. Talent string `json:"talent"`
  110. Area string `json:"area"`
  111. }