- package yb
- // QuestionCommentDeleteReq 删除问答评论请求
- type QuestionCommentDeleteReq struct {
- CommunityQuestionCommentId int `description:"问题评论ID"`
- }
- // QuestionCommentHotReq 设置/取消 精选问答评论请求
- type QuestionCommentHotReq struct {
- CommunityQuestionCommentId int `description:"问题评论ID"`
- }
|