community_question_comment.go 335 B

1234567891011
  1. package yb
  2. // QuestionCommentDeleteReq 删除问答评论请求
  3. type QuestionCommentDeleteReq struct {
  4. CommunityQuestionCommentId int `description:"问题评论ID"`
  5. }
  6. // QuestionCommentHotReq 设置/取消 精选问答评论请求
  7. type QuestionCommentHotReq struct {
  8. CommunityQuestionCommentId int `description:"问题评论ID"`
  9. }