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

12 lines
336 B

  1. package friend_circles
  2. type IsCanCommentResp struct {
  3. IsCan bool `json:"is_can"`
  4. }
  5. type CommentReq struct {
  6. CircleIndexId string `json:"circle_index_id" example:"朋友圈文档记录"`
  7. CommentIndexId string `json:"comment_index_id" example:"评论文档记录"`
  8. Content string `json:"content,required"` // 文本内容
  9. }