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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package article
  2. import (
  3. "applet/app/svc/article"
  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.ArticleListReq true "(分页信息必填)"
  14. // @Success 200 {object} md.ArticleListResp "具体数据"
  15. // @Failure 400 {object} md.Response "具体错误"
  16. // @Router /api/article/content/list [post]
  17. func List(c *gin.Context) {
  18. article.List(c)
  19. }
  20. // Save
  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.ArticleSaveReq true "(分页信息必填)"
  28. // @Success 200 {string} "具体数据"
  29. // @Failure 400 {object} md.Response "具体错误"
  30. // @Router /api/article/content/save [post]
  31. func Save(c *gin.Context) {
  32. article.Save(c)
  33. }
  34. // Del
  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.ArticleDelReq true "(分页信息必填)"
  42. // @Success 200 {string} "具体数据"
  43. // @Failure 400 {object} md.Response "具体错误"
  44. // @Router /api/article/content/del [post]
  45. func Del(c *gin.Context) {
  46. article.Del(c)
  47. }