comment.go 368 B

123456789101112131415
  1. package request
  2. type AddReplyCommentReq struct {
  3. CommentId int `description:"要回复的留言ID"`
  4. Content string `description:"回复内容"`
  5. }
  6. type CommentReq struct {
  7. CommentId int `description:"留言ID"`
  8. }
  9. type CommentProductDelReq struct {
  10. CommentId int `description:"留言ID"`
  11. ProductType int `description:"板块ID"`
  12. }