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