123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package autocode
- import (
- "github.com/flipped-aurora/gin-vue-admin/server/global"
- "github.com/flipped-aurora/gin-vue-admin/server/model/autocode"
- "github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
- autocodeReq "github.com/flipped-aurora/gin-vue-admin/server/model/autocode/request"
- "github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
- "github.com/flipped-aurora/gin-vue-admin/server/service"
- "github.com/gin-gonic/gin"
- "go.uber.org/zap"
- )
- type {{.StructName}}Api struct {
- }
- var {{.Abbreviation}}Service = service.ServiceGroupApp.AutoCodeServiceGroup.{{.StructName}}Service
- // Create{{.StructName}} 创建{{.StructName}}
- // @Tags {{.StructName}}
- // @Summary 创建{{.StructName}}
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body autocode.{{.StructName}} true "创建{{.StructName}}"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /{{.Abbreviation}}/create{{.StructName}} [post]
- func ({{.Abbreviation}}Api *{{.StructName}}Api) Create{{.StructName}}(c *gin.Context) {
- var {{.Abbreviation}} autocode.{{.StructName}}
- _ = c.ShouldBindJSON(&{{.Abbreviation}})
- if err := {{.Abbreviation}}Service.Create{{.StructName}}({{.Abbreviation}}); err != nil {
- global.GVA_LOG.Error("创建失败!", zap.Any("err", err))
- response.FailWithMessage("创建失败", c)
- } else {
- response.OkWithMessage("创建成功", c)
- }
- }
- // Delete{{.StructName}} 删除{{.StructName}}
- // @Tags {{.StructName}}
- // @Summary 删除{{.StructName}}
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body autocode.{{.StructName}} true "删除{{.StructName}}"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
- // @Router /{{.Abbreviation}}/delete{{.StructName}} [delete]
- func ({{.Abbreviation}}Api *{{.StructName}}Api) Delete{{.StructName}}(c *gin.Context) {
- var {{.Abbreviation}} autocode.{{.StructName}}
- _ = c.ShouldBindJSON(&{{.Abbreviation}})
- if err := {{.Abbreviation}}Service.Delete{{.StructName}}({{.Abbreviation}}); err != nil {
- global.GVA_LOG.Error("删除失败!", zap.Any("err", err))
- response.FailWithMessage("删除失败", c)
- } else {
- response.OkWithMessage("删除成功", c)
- }
- }
- // Delete{{.StructName}}ByIds 批量删除{{.StructName}}
- // @Tags {{.StructName}}
- // @Summary 批量删除{{.StructName}}
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body request.IdsReq true "批量删除{{.StructName}}"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"批量删除成功"}"
- // @Router /{{.Abbreviation}}/delete{{.StructName}}ByIds [delete]
- func ({{.Abbreviation}}Api *{{.StructName}}Api) Delete{{.StructName}}ByIds(c *gin.Context) {
- var IDS request.IdsReq
- _ = c.ShouldBindJSON(&IDS)
- if err := {{.Abbreviation}}Service.Delete{{.StructName}}ByIds(IDS); err != nil {
- global.GVA_LOG.Error("批量删除失败!", zap.Any("err", err))
- response.FailWithMessage("批量删除失败", c)
- } else {
- response.OkWithMessage("批量删除成功", c)
- }
- }
- // Update{{.StructName}} 更新{{.StructName}}
- // @Tags {{.StructName}}
- // @Summary 更新{{.StructName}}
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body autocode.{{.StructName}} true "更新{{.StructName}}"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
- // @Router /{{.Abbreviation}}/update{{.StructName}} [put]
- func ({{.Abbreviation}}Api *{{.StructName}}Api) Update{{.StructName}}(c *gin.Context) {
- var {{.Abbreviation}} autocode.{{.StructName}}
- _ = c.ShouldBindJSON(&{{.Abbreviation}})
- if err := {{.Abbreviation}}Service.Update{{.StructName}}({{.Abbreviation}}); err != nil {
- global.GVA_LOG.Error("更新失败!", zap.Any("err", err))
- response.FailWithMessage("更新失败", c)
- } else {
- response.OkWithMessage("更新成功", c)
- }
- }
- // Find{{.StructName}} 用id查询{{.StructName}}
- // @Tags {{.StructName}}
- // @Summary 用id查询{{.StructName}}
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data query autocode.{{.StructName}} true "用id查询{{.StructName}}"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
- // @Router /{{.Abbreviation}}/find{{.StructName}} [get]
- func ({{.Abbreviation}}Api *{{.StructName}}Api) Find{{.StructName}}(c *gin.Context) {
- var {{.Abbreviation}} autocode.{{.StructName}}
- _ = c.ShouldBindQuery(&{{.Abbreviation}})
- if err, re{{.Abbreviation}} := {{.Abbreviation}}Service.Get{{.StructName}}({{.Abbreviation}}.ID); err != nil {
- global.GVA_LOG.Error("查询失败!", zap.Any("err", err))
- response.FailWithMessage("查询失败", c)
- } else {
- response.OkWithData(gin.H{"re{{.Abbreviation}}": re{{.Abbreviation}}}, c)
- }
- }
- // Get{{.StructName}}List 分页获取{{.StructName}}列表
- // @Tags {{.StructName}}
- // @Summary 分页获取{{.StructName}}列表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data query autocodeReq.{{.StructName}}Search true "分页获取{{.StructName}}列表"
- // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /{{.Abbreviation}}/get{{.StructName}}List [get]
- func ({{.Abbreviation}}Api *{{.StructName}}Api) Get{{.StructName}}List(c *gin.Context) {
- var pageInfo autocodeReq.{{.StructName}}Search
- _ = c.ShouldBindQuery(&pageInfo)
- if err, list, total := {{.Abbreviation}}Service.Get{{.StructName}}InfoList(pageInfo); err != nil {
- global.GVA_LOG.Error("获取失败!", zap.Any("err", err))
- response.FailWithMessage("获取失败", c)
- } else {
- response.OkWithDetailed(response.PageResult{
- List: list,
- Total: total,
- Page: pageInfo.Page,
- PageSize: pageInfo.PageSize,
- }, "获取成功", c)
- }
- }
|