蛋蛋星球 后台端
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.
 
 
 
 

52 lines
1.9 KiB

  1. package user_feedback
  2. import (
  3. "applet/app/svc/user_feedback"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // CateList
  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.UserFeedbackCateListReq true "(分页信息必填)"
  14. // @Success 200 {object} md.UserFeedbackCateListResp "具体数据"
  15. // @Failure 400 {object} md.Response "具体错误"
  16. // @Router /api/userFeedback/cate/list [post]
  17. func CateList(c *gin.Context) {
  18. user_feedback.CateList(c)
  19. }
  20. // CateSave
  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.UserFeedbackCateSaveReq true "(分页信息必填)"
  28. // @Success 200 {string} "具体数据"
  29. // @Failure 400 {object} md.Response "具体错误"
  30. // @Router /api/user_feedback/cate/save [post]
  31. func CateSave(c *gin.Context) {
  32. user_feedback.CateSave(c)
  33. }
  34. // CateDel
  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.UserFeedbackCateDelReq true "(分页信息必填)"
  42. // @Success 200 {string} "具体数据"
  43. // @Failure 400 {object} md.Response "具体错误"
  44. // @Router /api/user_feedback/cate/del [post]
  45. func CateDel(c *gin.Context) {
  46. user_feedback.CateDel(c)
  47. }