蛋蛋星球-客户端
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

md_comment.go 336 B

1 miesiąc temu
1234567891011
  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. }