蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hdl_list.go 3.1 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package user_feedback
  2. import (
  3. "applet/app/svc/user_feedback"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // List
  7. // @Summary 用户反馈-反馈列表
  8. // @Tags 消息中心
  9. // @Description 反馈列表
  10. // @Accept json
  11. // @Produce json
  12. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  13. // @Param req body md.UserFeedbackListReq true "(分页信息必填)"
  14. // @Success 200 {object} md.UserFeedbackListResp "具体数据"
  15. // @Failure 400 {object} md.Response "具体错误"
  16. // @Router /api/userFeedback/content/list [post]
  17. func List(c *gin.Context) {
  18. user_feedback.List(c)
  19. }
  20. // RecordList
  21. // @Summary 用户反馈-反馈列表-沟通记录
  22. // @Tags 消息中心
  23. // @Description 反馈列表-沟通记录
  24. // @Accept json
  25. // @Produce json
  26. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  27. // @Param req body md.UserFeedbackRecordListReq true "(分页信息必填)"
  28. // @Success 200 {object} md.UserFeedbackRecordListResp "具体数据"
  29. // @Failure 400 {object} md.Response "具体错误"
  30. // @Router /api/userFeedback/content/record/list [post]
  31. func RecordList(c *gin.Context) {
  32. user_feedback.RecordList(c)
  33. }
  34. // Say
  35. // @Summary 用户反馈-反馈列表-沟通发送
  36. // @Tags 消息中心
  37. // @Description 反馈列表-沟通发送
  38. // @Accept json
  39. // @Produce json
  40. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  41. // @Param req body md.UserFeedbackSayReq true "(分页信息必填)"
  42. // @Success 200 {string} "具体数据"
  43. // @Failure 400 {object} md.Response "具体错误"
  44. // @Router /api/userFeedback/content/say [post]
  45. func Say(c *gin.Context) {
  46. user_feedback.Say(c)
  47. }
  48. // ChangeState
  49. // @Summary 用户反馈-反馈列表-修改状态
  50. // @Tags 消息中心
  51. // @Description 反馈列表-修改状态
  52. // @Accept json
  53. // @Produce json
  54. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  55. // @Param req body md.UserFeedbackSayReq true "(分页信息必填)"
  56. // @Success 200 {string} "具体数据"
  57. // @Failure 400 {object} md.Response "具体错误"
  58. // @Router /api/userFeedback/content/change/state [post]
  59. func ChangeState(c *gin.Context) {
  60. user_feedback.ChangeState(c)
  61. }
  62. // Del
  63. // @Summary 用户反馈-反馈列表-反馈删除
  64. // @Tags 消息中心
  65. // @Description 反馈列表-反馈删除
  66. // @Accept json
  67. // @Produce json
  68. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  69. // @Param req body md.UserFeedbackDelReq true "(分页信息必填)"
  70. // @Success 200 {string} "具体数据"
  71. // @Failure 400 {object} md.Response "具体错误"
  72. // @Router /api/userFeedback/content/del [post]
  73. func Del(c *gin.Context) {
  74. user_feedback.Del(c)
  75. }