|
1234567891011 |
- package friend_circles
-
- type IsCanCommentResp struct {
- IsCan bool `json:"is_can"`
- }
-
- type CommentReq struct {
- CircleIndexId string `json:"circle_index_id" example:"朋友圈文档记录"`
- CommentIndexId string `json:"comment_index_id" example:"评论文档记录"`
- Content string `json:"content,required"` // 文本内容
- }
|