content.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package autocode
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/global"
  4. "github.com/flipped-aurora/gin-vue-admin/server/model/autocode"
  5. autocodeReq "github.com/flipped-aurora/gin-vue-admin/server/model/autocode/request"
  6. "github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
  7. "github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
  8. "github.com/flipped-aurora/gin-vue-admin/server/service"
  9. "github.com/gin-gonic/gin"
  10. "go.uber.org/zap"
  11. )
  12. type ContentApi struct {
  13. }
  14. var contentService = service.ServiceGroupApp.AutoCodeServiceGroup.ContentService
  15. // CreateContent 创建Content
  16. // @Tags Content
  17. // @Summary 创建Content
  18. // @Security ApiKeyAuth
  19. // @accept application/json
  20. // @Produce application/json
  21. // @Param data body autocode.Content true "创建Content"
  22. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  23. // @Router /content/createContent [post]
  24. func (contentApi *ContentApi) CreateContent(c *gin.Context) {
  25. var content autocode.Content
  26. _ = c.ShouldBindJSON(&content)
  27. if err := contentService.CreateContent(content); err != nil {
  28. global.GVA_LOG.Error("创建失败!", zap.Any("err", err))
  29. response.FailWithMessage("创建失败", c)
  30. } else {
  31. response.OkWithMessage("创建成功", c)
  32. }
  33. }
  34. // DeleteContent 删除Content
  35. // @Tags Content
  36. // @Summary 删除Content
  37. // @Security ApiKeyAuth
  38. // @accept application/json
  39. // @Produce application/json
  40. // @Param data body autocode.Content true "删除Content"
  41. // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
  42. // @Router /content/deleteContent [delete]
  43. func (contentApi *ContentApi) DeleteContent(c *gin.Context) {
  44. var content autocode.Content
  45. _ = c.ShouldBindJSON(&content)
  46. if err := contentService.DeleteContent(content); err != nil {
  47. global.GVA_LOG.Error("删除失败!", zap.Any("err", err))
  48. response.FailWithMessage("删除失败", c)
  49. } else {
  50. response.OkWithMessage("删除成功", c)
  51. }
  52. }
  53. // DeleteContentByIds 批量删除Content
  54. // @Tags Content
  55. // @Summary 批量删除Content
  56. // @Security ApiKeyAuth
  57. // @accept application/json
  58. // @Produce application/json
  59. // @Param data body request.IdsReq true "批量删除Content"
  60. // @Success 200 {string} string "{"success":true,"data":{},"msg":"批量删除成功"}"
  61. // @Router /content/deleteContentByIds [delete]
  62. func (contentApi *ContentApi) DeleteContentByIds(c *gin.Context) {
  63. var IDS request.IdsReq
  64. _ = c.ShouldBindJSON(&IDS)
  65. if err := contentService.DeleteContentByIds(IDS); err != nil {
  66. global.GVA_LOG.Error("批量删除失败!", zap.Any("err", err))
  67. response.FailWithMessage("批量删除失败", c)
  68. } else {
  69. response.OkWithMessage("批量删除成功", c)
  70. }
  71. }
  72. // UpdateContent 更新Content
  73. // @Tags Content
  74. // @Summary 更新Content
  75. // @Security ApiKeyAuth
  76. // @accept application/json
  77. // @Produce application/json
  78. // @Param data body autocode.Content true "更新Content"
  79. // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
  80. // @Router /content/updateContent [put]
  81. func (contentApi *ContentApi) UpdateContent(c *gin.Context) {
  82. var content autocode.Content
  83. _ = c.ShouldBindJSON(&content)
  84. if err := contentService.UpdateContent(content); err != nil {
  85. global.GVA_LOG.Error("更新失败!", zap.Any("err", err))
  86. response.FailWithMessage("更新失败", c)
  87. } else {
  88. response.OkWithMessage("更新成功", c)
  89. }
  90. }
  91. // FindContent 用id查询Content
  92. // @Tags Content
  93. // @Summary 用id查询Content
  94. // @Security ApiKeyAuth
  95. // @accept application/json
  96. // @Produce application/json
  97. // @Param data query autocode.Content true "用id查询Content"
  98. // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
  99. // @Router /content/findContent [get]
  100. func (contentApi *ContentApi) FindContent(c *gin.Context) {
  101. var content autocode.Content
  102. _ = c.ShouldBindQuery(&content)
  103. if err, recontent := contentService.GetContent(content.ID); err != nil {
  104. global.GVA_LOG.Error("查询失败!", zap.Any("err", err))
  105. response.FailWithMessage("查询失败", c)
  106. } else {
  107. response.OkWithData(gin.H{"recontent": recontent}, c)
  108. }
  109. }
  110. // GetContentList 分页获取Content列表
  111. // @Tags Content
  112. // @Summary 分页获取Content列表
  113. // @Security ApiKeyAuth
  114. // @accept application/json
  115. // @Produce application/json
  116. // @Param data query autocodeReq.ContentSearch true "分页获取Content列表"
  117. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  118. // @Router /content/getContentList [get]
  119. func (contentApi *ContentApi) GetContentList(c *gin.Context) {
  120. var pageInfo autocodeReq.ContentSearch
  121. _ = c.ShouldBindQuery(&pageInfo)
  122. if err, list, total := contentService.GetContentInfoList(pageInfo); err != nil {
  123. global.GVA_LOG.Error("获取失败!", zap.Any("err", err))
  124. response.FailWithMessage("获取失败", c)
  125. } else {
  126. response.OkWithDetailed(response.PageResult{
  127. List: list,
  128. Total: total,
  129. Page: pageInfo.Page,
  130. PageSize: pageInfo.PageSize,
  131. }, "获取成功", c)
  132. }
  133. }