蛋蛋星球-客户端
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.
 
 
 
 
 

110 lines
5.3 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. Kind int32 `json:"kind" label:"类型(1:普通 2:官方)"` //类型(1:普通 2:官方)
  42. Content string `json:"content" label:"文本内容"` //文本内容
  43. Image string `json:"image" label:"图片"` //图片
  44. Video string `json:"video" label:"视频"` //视频
  45. LikesNums int `json:"likes_nums" label:"点赞数"` //点赞数
  46. ShareNums int `json:"share_nums" label:"分享数"` //分享数
  47. CommentNums int `json:"comment_nums" label:"评论数"` //评论数
  48. IsLike bool `json:"is_like" label:"是否点赞"` //是否点赞
  49. //State int32 `json:"state" label:"状态(1:正常 2:隐藏)"`
  50. //IsTopUp int32 `json:"is_top_up" label:"是否置顶(1:是 2:否)"`
  51. //IsPraise int32 `json:"is_praise" label:"是否被表扬(1:是 2:否)"`
  52. CreatedAt string `json:"created_at"`
  53. UpdatedAt string `json:"updated_at"`
  54. }
  55. type CommentListResp struct {
  56. CircleIndexId string `json:"circle_index_id"`
  57. Total int64 `json:"total"` // 总评论数量
  58. List []EggFriendCircleCommentEsStruct `json:"list"`
  59. }
  60. type CommentDetailResp struct {
  61. CircleIndexId string `json:"circle_index_id"`
  62. Total int64 `json:"total"` // 总评论数量
  63. List []EggFriendCircleCommentEsStruct `json:"list"`
  64. }
  65. type EggFriendCircleCommentEsStruct struct {
  66. CommentIndexId string `json:"comment_index_id"` //评论文档记录
  67. NickName string `json:"nickname"`
  68. AvatarUrl string `json:"avatar_url"` // 用户头像
  69. Uid int64 `json:"uid" label:"uid"`
  70. ImUid int64 `json:"im_uid" label:"im_uid"`
  71. Kind int32 `json:"kind" label:"类型(1:普通 2:官方)"` //类型(1:普通 2:官方)
  72. CircleId string `json:"circle_id" label:"朋友圈id"` //朋友圈id
  73. CommentId string `json:"comment_id" label:"评论id"` //评论id
  74. CommentImUid int64 `json:"comment_im_uid" label:"回复评论用户id"`
  75. ReplyCommentId string `json:"reply_comment_id" label:"回复评论id"` //回复评论id
  76. ReplyCommentImUid int64 `json:"reply_comment_im_uid" label:"回复评论用户id"`
  77. ReplyCommentUserNickname string `json:"reply_comment_user_nickname" label:"回复评论的用户昵称"` //回复评论的用户昵称
  78. Content string `json:"content" label:"文本内容"` //文本内容
  79. LikesNums int `json:"likes_nums" label:"点赞数"` //点赞数
  80. CommentNums int `json:"comment_nums" label:"评论数"` //评论数
  81. IsLike bool `json:"is_like" label:"是否点赞"` //是否点赞
  82. //State int32 `json:"state" label:"状态(1:正常 2:隐藏)"` //状态(1:正常 2:隐藏)
  83. //IsPraise int32 `json:"is_praise" label:"是否被表扬(1:是 2:否)"` //是否被表扬(1:是 2:否)
  84. CreatedAt string `json:"created_at"`
  85. UpdatedAt string `json:"updated_at"`
  86. }
  87. type EggFriendCircleDelReq struct {
  88. CircleIndexId string `json:"circle_index_id"` // 文章索引
  89. }
  90. type EggFriendCircleShareReq struct {
  91. CircleIndexId string `json:"circle_index_id"` // 文章索引
  92. }
  93. type EggFriendCircleLikeReq struct {
  94. CircleIndexId string `json:"circle_index_id"` // 文章索引
  95. }
  96. type EggFriendCircleCancelLikeReq struct {
  97. CircleIndexId string `json:"circle_index_id"` // 文章索引
  98. }