- package request
- type AddReplyCommentReq struct {
- CommentId int `description:"要回复的留言ID"`
- Content string `description:"回复内容"`
- }
- type CommentReq struct {
- CommentId int `description:"留言ID"`
- }
- type CommentProductDelReq struct {
- CommentId int `description:"留言ID"`
- ProductType int `description:"板块ID"`
- }
|