蛋蛋星球-客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

117 lines
5.5 KiB

  1. package friend_circles
  2. type RecommendListReq struct {
  3. Page int `json:"page"` // 页码
  4. PageSize int `json:"page_size"` // 每页数量
  5. }
  6. type RecommendListResp struct {
  7. Page int `json:"page"` // 页码
  8. PageSize int `json:"page_size"` // 每页数量
  9. Total int64 `json:"total"` // 总量
  10. List []*EggFriendCircleEsStruct `json:"list"`
  11. }
  12. type CommentListReq struct {
  13. CircleIndexId string `json:"circle_index_id"` //朋友圈文档记录
  14. Page int `json:"page"` // 页码
  15. PageSize int `json:"page_size"` // 每页数量
  16. }
  17. type CommentDetailReq struct {
  18. CommentIndexId string `json:"comment_index_id"` //评论文档记录
  19. Page int `json:"page"` // 页码
  20. PageSize int `json:"page_size"` // 每页数量
  21. }
  22. type PublishReq struct {
  23. Content string `json:"content,required"` // 文本内容
  24. ImageList []string `json:"image_list"` // 图片
  25. Video string `json:"video"` // 视屏
  26. }
  27. type MySelfListReq struct {
  28. Page int `json:"page"` // 页码
  29. PageSize int `json:"page_size"` // 每页数量
  30. }
  31. type MySelfListResp struct {
  32. Page int `json:"page"` // 页码
  33. PageSize int `json:"page_size"` // 每页数量
  34. Total int64 `json:"total"` // 总量
  35. List []*EggFriendCircleEsStruct `json:"list"`
  36. }
  37. type EggFriendCircleEsStruct struct {
  38. CircleIndexId string `json:"circle_index_id"` //朋友圈文档记录
  39. Uid int64 `json:"uid" label:"uid"`
  40. ImUid int64 `json:"im_uid" label:"im_uid"`
  41. ImNickname string `json:"im_nickname" label:"im_nickname"`
  42. ImAvatar string `json:"im_avatar" label:"im_avatar"`
  43. Kind int32 `json:"kind" label:"类型(1:普通 2:官方)"` //类型(1:普通 2:官方)
  44. Content string `json:"content" label:"文本内容"` //文本内容
  45. Image string `json:"image" label:"图片"` //图片
  46. Video string `json:"video" label:"视频"` //视频
  47. LikesNums int `json:"likes_nums" label:"点赞数"` //点赞数
  48. ShareNums int `json:"share_nums" label:"分享数"` //分享数
  49. CommentNums int `json:"comment_nums" label:"评论数"` //评论数
  50. IsLike bool `json:"is_like" label:"是否点赞"` //是否点赞
  51. //State int32 `json:"state" label:"状态(1:正常 2:隐藏)"`
  52. //IsTopUp int32 `json:"is_top_up" label:"是否置顶(1:是 2:否)"`
  53. //IsPraise int32 `json:"is_praise" label:"是否被表扬(1:是 2:否)"`
  54. CreatedAt string `json:"created_at"`
  55. UpdatedAt string `json:"updated_at"`
  56. }
  57. type CommentListResp struct {
  58. CircleIndexId string `json:"circle_index_id"`
  59. Total int64 `json:"total"` // 总评论数量
  60. List []EggFriendCircleCommentEsStruct `json:"list"`
  61. }
  62. type CommentDetailResp struct {
  63. CircleIndexId string `json:"circle_index_id"`
  64. Total int64 `json:"total"` // 总评论数量
  65. List []EggFriendCircleCommentEsStruct `json:"list"`
  66. }
  67. type EggFriendCircleCommentEsStruct struct {
  68. CommentIndexId string `json:"comment_index_id"` //评论文档记录
  69. NickName string `json:"nickname"`
  70. AvatarUrl string `json:"avatar_url"` // 用户头像
  71. Uid int64 `json:"uid" label:"uid"`
  72. ImUid int64 `json:"im_uid" label:"im_uid"`
  73. Kind int32 `json:"kind" label:"类型(1:普通 2:官方)"` //类型(1:普通 2:官方)
  74. CircleId string `json:"circle_id" label:"朋友圈id"` //朋友圈id
  75. CommentId string `json:"comment_id" label:"评论id"` //评论id
  76. CommentImUid int64 `json:"comment_im_uid" label:"回复评论用户id"`
  77. ReplyCommentId string `json:"reply_comment_id" label:"回复评论id"` //回复评论id
  78. ReplyCommentImUid int64 `json:"reply_comment_im_uid" label:"回复评论用户id"`
  79. ReplyCommentUserNickname string `json:"reply_comment_user_nickname" label:"回复评论的用户昵称"` //回复评论的用户昵称
  80. Content string `json:"content" label:"文本内容"` //文本内容
  81. LikesNums int `json:"likes_nums" label:"点赞数"` //点赞数
  82. CommentNums int `json:"comment_nums" label:"评论数"` //评论数
  83. IsLike bool `json:"is_like" label:"是否点赞"` //是否点赞
  84. //State int32 `json:"state" label:"状态(1:正常 2:隐藏)"` //状态(1:正常 2:隐藏)
  85. //IsPraise int32 `json:"is_praise" label:"是否被表扬(1:是 2:否)"` //是否被表扬(1:是 2:否)
  86. CreatedAt string `json:"created_at"`
  87. UpdatedAt string `json:"updated_at"`
  88. }
  89. type EggFriendCircleDelReq struct {
  90. CircleIndexId string `json:"circle_index_id"` // 文章索引
  91. }
  92. type EggFriendCircleShareReq struct {
  93. CircleIndexId string `json:"circle_index_id"` // 文章索引
  94. }
  95. type EggFriendCircleLikeReq struct {
  96. CircleIndexId string `json:"circle_index_id"` // 文章索引
  97. }
  98. type EggFriendCircleCancelLikeReq struct {
  99. CircleIndexId string `json:"circle_index_id"` // 文章索引
  100. }
  101. type ImUserNicknameAndAvatar struct {
  102. NickName string `json:"nickname"`
  103. Avatar string `json:"avatar"`
  104. }