read_count.go 5.1 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 ReadCountApi struct {
  13. }
  14. var readCountService = service.ServiceGroupApp.AutoCodeServiceGroup.ReadCountService
  15. // CreateReadCount 创建ReadCount
  16. // @Tags ReadCount
  17. // @Summary 创建ReadCount
  18. // @Security ApiKeyAuth
  19. // @accept application/json
  20. // @Produce application/json
  21. // @Param data body autocode.ReadCount true "创建ReadCount"
  22. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  23. // @Router /readCount/createReadCount [post]
  24. func (readCountApi *ReadCountApi) CreateReadCount(c *gin.Context) {
  25. var readCount autocode.ReadCount
  26. _ = c.ShouldBindJSON(&readCount)
  27. if err := readCountService.CreateReadCount(readCount); err != nil {
  28. global.GVA_LOG.Error("创建失败!", zap.Any("err", err))
  29. response.FailWithMessage("创建失败", c)
  30. } else {
  31. response.OkWithMessage("创建成功", c)
  32. }
  33. }
  34. // DeleteReadCount 删除ReadCount
  35. // @Tags ReadCount
  36. // @Summary 删除ReadCount
  37. // @Security ApiKeyAuth
  38. // @accept application/json
  39. // @Produce application/json
  40. // @Param data body autocode.ReadCount true "删除ReadCount"
  41. // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
  42. // @Router /readCount/deleteReadCount [delete]
  43. func (readCountApi *ReadCountApi) DeleteReadCount(c *gin.Context) {
  44. var readCount autocode.ReadCount
  45. _ = c.ShouldBindJSON(&readCount)
  46. if err := readCountService.DeleteReadCount(readCount); err != nil {
  47. global.GVA_LOG.Error("删除失败!", zap.Any("err", err))
  48. response.FailWithMessage("删除失败", c)
  49. } else {
  50. response.OkWithMessage("删除成功", c)
  51. }
  52. }
  53. // DeleteReadCountByIds 批量删除ReadCount
  54. // @Tags ReadCount
  55. // @Summary 批量删除ReadCount
  56. // @Security ApiKeyAuth
  57. // @accept application/json
  58. // @Produce application/json
  59. // @Param data body request.IdsReq true "批量删除ReadCount"
  60. // @Success 200 {string} string "{"success":true,"data":{},"msg":"批量删除成功"}"
  61. // @Router /readCount/deleteReadCountByIds [delete]
  62. func (readCountApi *ReadCountApi) DeleteReadCountByIds(c *gin.Context) {
  63. var IDS request.IdsReq
  64. _ = c.ShouldBindJSON(&IDS)
  65. if err := readCountService.DeleteReadCountByIds(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. // UpdateReadCount 更新ReadCount
  73. // @Tags ReadCount
  74. // @Summary 更新ReadCount
  75. // @Security ApiKeyAuth
  76. // @accept application/json
  77. // @Produce application/json
  78. // @Param data body autocode.ReadCount true "更新ReadCount"
  79. // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
  80. // @Router /readCount/updateReadCount [put]
  81. func (readCountApi *ReadCountApi) UpdateReadCount(c *gin.Context) {
  82. var readCount autocode.ReadCount
  83. _ = c.ShouldBindJSON(&readCount)
  84. if err := readCountService.UpdateReadCount(readCount); err != nil {
  85. global.GVA_LOG.Error("更新失败!", zap.Any("err", err))
  86. response.FailWithMessage("更新失败", c)
  87. } else {
  88. response.OkWithMessage("更新成功", c)
  89. }
  90. }
  91. // FindReadCount 用id查询ReadCount
  92. // @Tags ReadCount
  93. // @Summary 用id查询ReadCount
  94. // @Security ApiKeyAuth
  95. // @accept application/json
  96. // @Produce application/json
  97. // @Param data query autocode.ReadCount true "用id查询ReadCount"
  98. // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
  99. // @Router /readCount/findReadCount [get]
  100. func (readCountApi *ReadCountApi) FindReadCount(c *gin.Context) {
  101. var readCount autocode.ReadCount
  102. _ = c.ShouldBindQuery(&readCount)
  103. if err, rereadCount := readCountService.GetReadCount(readCount.ID); err != nil {
  104. global.GVA_LOG.Error("查询失败!", zap.Any("err", err))
  105. response.FailWithMessage("查询失败", c)
  106. } else {
  107. response.OkWithData(gin.H{"rereadCount": rereadCount}, c)
  108. }
  109. }
  110. // GetReadCountList 分页获取ReadCount列表
  111. // @Tags ReadCount
  112. // @Summary 分页获取ReadCount列表
  113. // @Security ApiKeyAuth
  114. // @accept application/json
  115. // @Produce application/json
  116. // @Param data query autocodeReq.ReadCountSearch true "分页获取ReadCount列表"
  117. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  118. // @Router /readCount/getReadCountList [get]
  119. func (readCountApi *ReadCountApi) GetReadCountList(c *gin.Context) {
  120. var pageInfo autocodeReq.ReadCountSearch
  121. _ = c.ShouldBindQuery(&pageInfo)
  122. if err, list, total := readCountService.GetReadCountInfoList(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. }