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

преди 1 ден
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package article
  2. import (
  3. "applet/app/svc/article"
  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.ArticleCateListReq true "(分页信息必填)"
  14. // @Success 200 {object} md.ArticleCateListResp "具体数据"
  15. // @Failure 400 {object} md.Response "具体错误"
  16. // @Router /api/article/cate/list [post]
  17. func CateList(c *gin.Context) {
  18. article.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.ArticleCateSaveReq true "(分页信息必填)"
  28. // @Success 200 {string} "具体数据"
  29. // @Failure 400 {object} md.Response "具体错误"
  30. // @Router /api/article/cate/save [post]
  31. func CateSave(c *gin.Context) {
  32. article.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.ArticleCateDelReq true "(分页信息必填)"
  42. // @Success 200 {string} "具体数据"
  43. // @Failure 400 {object} md.Response "具体错误"
  44. // @Router /api/article/cate/del [post]
  45. func CateDel(c *gin.Context) {
  46. article.CateDel(c)
  47. }