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.

115 lines
3.8 KiB

  1. package v1
  2. import (
  3. "fmt"
  4. "gin-vue-admin/global/response"
  5. "gin-vue-admin/model"
  6. "gin-vue-admin/model/request"
  7. resp "gin-vue-admin/model/response"
  8. "gin-vue-admin/service"
  9. "github.com/gin-gonic/gin"
  10. )
  11. // @Tags {{.StructName}}
  12. // @Summary 创建{{.StructName}}
  13. // @Security ApiKeyAuth
  14. // @accept application/json
  15. // @Produce application/json
  16. // @Param data body model.{{.StructName}} true "创建{{.StructName}}"
  17. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  18. // @Router /{{.Abbreviation}}/create{{.StructName}} [post]
  19. func Create{{.StructName}}(c *gin.Context) {
  20. var {{.Abbreviation}} model.{{.StructName}}
  21. _ = c.ShouldBindJSON(&{{.Abbreviation}})
  22. err := service.Create{{.StructName}}({{.Abbreviation}})
  23. if err != nil {
  24. response.FailWithMessage(fmt.Sprintf("创建失败,%v", err), c)
  25. } else {
  26. response.OkWithMessage("创建成功", c)
  27. }
  28. }
  29. // @Tags {{.StructName}}
  30. // @Summary 删除{{.StructName}}
  31. // @Security ApiKeyAuth
  32. // @accept application/json
  33. // @Produce application/json
  34. // @Param data body model.{{.StructName}} true "删除{{.StructName}}"
  35. // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
  36. // @Router /{{.Abbreviation}}/delete{{.StructName}} [delete]
  37. func Delete{{.StructName}}(c *gin.Context) {
  38. var {{.Abbreviation}} model.{{.StructName}}
  39. _ = c.ShouldBindJSON(&{{.Abbreviation}})
  40. err := service.Delete{{.StructName}}({{.Abbreviation}})
  41. if err != nil {
  42. response.FailWithMessage(fmt.Sprintf("删除失败,%v", err), c)
  43. } else {
  44. response.OkWithMessage("删除成功", c)
  45. }
  46. }
  47. // @Tags {{.StructName}}
  48. // @Summary 更新{{.StructName}}
  49. // @Security ApiKeyAuth
  50. // @accept application/json
  51. // @Produce application/json
  52. // @Param data body model.{{.StructName}} true "更新{{.StructName}}"
  53. // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
  54. // @Router /{{.Abbreviation}}/update{{.StructName}} [put]
  55. func Update{{.StructName}}(c *gin.Context) {
  56. var {{.Abbreviation}} model.{{.StructName}}
  57. _ = c.ShouldBindJSON(&{{.Abbreviation}})
  58. err := service.Update{{.StructName}}(&{{.Abbreviation}})
  59. if err != nil {
  60. response.FailWithMessage(fmt.Sprintf("更新失败,%v", err), c)
  61. } else {
  62. response.OkWithMessage("删除成功", c)
  63. }
  64. }
  65. // @Tags {{.StructName}}
  66. // @Summary 用id查询{{.StructName}}
  67. // @Security ApiKeyAuth
  68. // @accept application/json
  69. // @Produce application/json
  70. // @Param data body model.{{.StructName}} true "用id查询{{.StructName}}"
  71. // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
  72. // @Router /{{.Abbreviation}}/find{{.StructName}} [get]
  73. func Find{{.StructName}}(c *gin.Context) {
  74. var {{.Abbreviation}} model.{{.StructName}}
  75. _ = c.ShouldBindQuery(&{{.Abbreviation}})
  76. err,re{{.Abbreviation}} := service.Get{{.StructName}}({{.Abbreviation}}.ID)
  77. if err != nil {
  78. response.FailWithMessage(fmt.Sprintf("查询失败,%v", err), c)
  79. } else {
  80. response.OkWithData( gin.H{"re{{.Abbreviation}}":re{{.Abbreviation}},}, c)
  81. }
  82. }
  83. // @Tags {{.StructName}}
  84. // @Summary 分页获取{{.StructName}}列表
  85. // @Security ApiKeyAuth
  86. // @accept application/json
  87. // @Produce application/json
  88. // @Param data body request.PageInfo true "分页获取{{.StructName}}列表"
  89. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  90. // @Router /{{.Abbreviation}}/get{{.StructName}}List [get]
  91. func Get{{.StructName}}List(c *gin.Context) {
  92. var pageInfo request.PageInfo
  93. _ = c.ShouldBindQuery(&pageInfo)
  94. err, list, total := service.Get{{.StructName}}InfoList(pageInfo)
  95. if err != nil {
  96. response.FailWithMessage(fmt.Sprintf("获取数据失败,%v", err), c)
  97. } else {
  98. response.OkWithData(resp.PageResult{
  99. List: list,
  100. Total: total,
  101. Page: pageInfo.Page,
  102. PageSize: pageInfo.PageSize,
  103. }, c)
  104. }
  105. }