蛋蛋星球-客户端
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.
 
 
 
 
 
 

96 lines
3.5 KiB

  1. package hdl
  2. import (
  3. "applet/app/svc"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // CollegeCate
  7. // @Summary 蛋蛋学院-分类
  8. // @Tags 蛋蛋学院
  9. // @Description 蛋蛋学院-分类
  10. // @Accept json
  11. // @Produce json
  12. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  13. // @Success 200 {object} md.AdvertisingResp "具体数据"
  14. // @Failure 400 {object} md.Response "具体错误"
  15. // @Router /api/v1/college/cate [get]
  16. func CollegeCate(c *gin.Context) {
  17. svc.CollegeCate(c)
  18. }
  19. // CollegeList
  20. // @Summary 蛋蛋学院-文章列表
  21. // @Tags 蛋蛋学院
  22. // @Description 蛋蛋学院-文章列表
  23. // @Accept json
  24. // @Produce json
  25. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  26. // @Param req body md.CollegeListReq true "参数"
  27. // @Success 200 {object} md.CollegeListResp "具体数据"
  28. // @Failure 400 {object} md.Response "具体错误"
  29. // @Router /api/v1/college/list [post]
  30. func CollegeList(c *gin.Context) {
  31. svc.CollegeList(c)
  32. }
  33. // CollegeDetail
  34. // @Summary 蛋蛋学院-文章详情
  35. // @Tags 蛋蛋学院
  36. // @Description 蛋蛋学院-文章详情
  37. // @Accept json
  38. // @Produce json
  39. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  40. // @Param req body md.CollegeDetailReq true "参数"
  41. // @Success 200 {object} md.CollegeDetailResp "具体数据"
  42. // @Failure 400 {object} md.Response "具体错误"
  43. // @Router /api/v1/college/detail [post]
  44. func CollegeDetail(c *gin.Context) {
  45. svc.CollegeDetail(c)
  46. }
  47. // CollegeLikeAdd
  48. // @Summary 蛋蛋学院-文章-点赞
  49. // @Tags 蛋蛋学院
  50. // @Description 蛋蛋学院-文章-点赞
  51. // @Accept json
  52. // @Produce json
  53. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  54. // @Param req body md.CollegeDetailReq true "参数"
  55. // @Success 200 {string} "具体数据"
  56. // @Failure 400 {object} md.Response "具体错误"
  57. // @Router /api/v1/college/like/add [post]
  58. func CollegeLikeAdd(c *gin.Context) {
  59. svc.CollegeLikeAdd(c)
  60. }
  61. // CollegeLikeCancel
  62. // @Summary 蛋蛋学院-文章-取消点赞
  63. // @Tags 蛋蛋学院
  64. // @Description 蛋蛋学院-文章-取消点赞
  65. // @Accept json
  66. // @Produce json
  67. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  68. // @Param req body md.CollegeDetailReq true "参数"
  69. // @Success 200 {string} "具体数据"
  70. // @Failure 400 {object} md.Response "具体错误"
  71. // @Router /api/v1/college/like/cancel [post]
  72. func CollegeLikeCancel(c *gin.Context) {
  73. svc.CollegeLikeCancel(c)
  74. }
  75. // CollegeShareAdd
  76. // @Summary 蛋蛋学院-文章-分享后调用统计数量
  77. // @Tags 蛋蛋学院
  78. // @Description 蛋蛋学院-文章-分享后调用统计数量
  79. // @Accept json
  80. // @Produce json
  81. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  82. // @Param req body md.CollegeDetailReq true "参数"
  83. // @Success 200 {string} "具体数据"
  84. // @Failure 400 {object} md.Response "具体错误"
  85. // @Router /api/v1/college/share/add [post]
  86. func CollegeShareAdd(c *gin.Context) {
  87. svc.CollegeShareAdd(c)
  88. }