201 lines
7.6 KiB
Plaintext
201 lines
7.6 KiB
Plaintext
package api
|
||
|
||
import (
|
||
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/plugin/{{.Package}}/model"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/plugin/{{.Package}}/model/request"
|
||
"github.com/gin-gonic/gin"
|
||
"go.uber.org/zap"
|
||
{{- if .AutoCreateResource}}
|
||
"github.com/flipped-aurora/gin-vue-admin/server/utils"
|
||
{{- end }}
|
||
)
|
||
|
||
var {{.StructName}} = new({{.Abbreviation}})
|
||
|
||
type {{.Abbreviation}} struct {}
|
||
|
||
// Create{{.StructName}} 创建{{.Description}}
|
||
// @Tags {{.StructName}}
|
||
// @Summary 创建{{.Description}}
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data body {{.Package}}.{{.StructName}} true "创建{{.Description}}"
|
||
// @Success 200 {object} response.Response{msg=string} "创建成功"
|
||
// @Router /{{.Abbreviation}}/create{{.StructName}} [post]
|
||
func (a *{{.Abbreviation}}) Create{{.StructName}}(c *gin.Context) {
|
||
var info model.{{.StructName}}
|
||
err := c.ShouldBindJSON(&info)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
{{- if .AutoCreateResource }}
|
||
info.CreatedBy = utils.GetUserID(c)
|
||
{{- end }}
|
||
err = service{{ .StructName }}.Create{{.StructName}}(&info)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("创建失败!", zap.Error(err))
|
||
response.FailWithMessage("创建失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("创建成功", c)
|
||
}
|
||
|
||
// Delete{{.StructName}} 删除{{.Description}}
|
||
// @Tags {{.StructName}}
|
||
// @Summary 删除{{.Description}}
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data body {{.Package}}.{{.StructName}} true "删除{{.Description}}"
|
||
// @Success 200 {object} response.Response{msg=string} "删除成功"
|
||
// @Router /{{.Abbreviation}}/delete{{.StructName}} [delete]
|
||
func (a *{{.Abbreviation}}) Delete{{.StructName}}(c *gin.Context) {
|
||
{{.PrimaryField.FieldJson}} := c.Query("{{.PrimaryField.FieldJson}}")
|
||
{{- if .AutoCreateResource }}
|
||
userID := utils.GetUserID(c)
|
||
{{- end }}
|
||
err := service{{ .StructName }}.Delete{{.StructName}}({{.PrimaryField.FieldJson}} {{- if .AutoCreateResource -}},userID{{- end -}})
|
||
if err != nil {
|
||
global.GVA_LOG.Error("删除失败!", zap.Error(err))
|
||
response.FailWithMessage("删除失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("删除成功", c)
|
||
}
|
||
|
||
// Delete{{.StructName}}ByIds 批量删除{{.Description}}
|
||
// @Tags {{.StructName}}
|
||
// @Summary 批量删除{{.Description}}
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Success 200 {object} response.Response{msg=string} "批量删除成功"
|
||
// @Router /{{.Abbreviation}}/delete{{.StructName}}ByIds [delete]
|
||
func (a *{{.Abbreviation}}) Delete{{.StructName}}ByIds(c *gin.Context) {
|
||
{{.PrimaryField.FieldJson}}s := c.QueryArray("{{.PrimaryField.FieldJson}}s[]")
|
||
{{- if .AutoCreateResource }}
|
||
userID := utils.GetUserID(c)
|
||
{{- end }}
|
||
if err := service{{ .StructName }}.Delete{{.StructName}}ByIds({{.PrimaryField.FieldJson}}s{{- if .AutoCreateResource }},userID{{- end }}); err != nil {
|
||
global.GVA_LOG.Error("批量删除失败!", zap.Error(err))
|
||
response.FailWithMessage("批量删除失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("批量删除成功", c)
|
||
}
|
||
|
||
// Update{{.StructName}} 更新{{.Description}}
|
||
// @Tags {{.StructName}}
|
||
// @Summary 更新{{.Description}}
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data body {{.Package}}.{{.StructName}} true "更新{{.Description}}"
|
||
// @Success 200 {object} response.Response{msg=string} "更新成功"
|
||
// @Router /{{.Abbreviation}}/update{{.StructName}} [put]
|
||
func (a *{{.Abbreviation}}) Update{{.StructName}}(c *gin.Context) {
|
||
var info model.{{.StructName}}
|
||
err := c.ShouldBindJSON(&info)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
{{- if .AutoCreateResource }}
|
||
info.UpdatedBy = utils.GetUserID(c)
|
||
{{- end }}
|
||
err = service{{ .StructName }}.Update{{.StructName}}(info)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("更新失败!", zap.Error(err))
|
||
response.FailWithMessage("更新失败", c)
|
||
return
|
||
}
|
||
response.OkWithMessage("更新成功", c)
|
||
}
|
||
|
||
// Find{{.StructName}} 用id查询{{.Description}}
|
||
// @Tags {{.StructName}}
|
||
// @Summary 用id查询{{.Description}}
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data query {{.Package}}.{{.StructName}} true "用id查询{{.Description}}"
|
||
// @Success 200 {object} response.Response{data=object{re{{.Abbreviation}}={{.Package}}.{{.StructName}}},msg=string} "查询成功"
|
||
// @Router /{{.Abbreviation}}/find{{.StructName}} [get]
|
||
func (a *{{.Abbreviation}}) Find{{.StructName}}(c *gin.Context) {
|
||
{{.PrimaryField.FieldJson}} := c.Query("{{.PrimaryField.FieldJson}}")
|
||
re{{.Abbreviation}}, err := service{{ .StructName }}.Get{{.StructName}}({{.PrimaryField.FieldJson}})
|
||
if err != nil {
|
||
global.GVA_LOG.Error("查询失败!", zap.Error(err))
|
||
response.FailWithMessage("查询失败", c)
|
||
return
|
||
}
|
||
response.OkWithData(re{{.Abbreviation}}, c)
|
||
}
|
||
|
||
// Get{{.StructName}}List 分页获取{{.Description}}列表
|
||
// @Tags {{.StructName}}
|
||
// @Summary 分页获取{{.Description}}列表
|
||
// @Security ApiKeyAuth
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data query request.{{.StructName}}Search true "分页获取{{.Description}}列表"
|
||
// @Success 200 {object} response.Response{data=response.PageResult,msg=string} "获取成功"
|
||
// @Router /{{.Abbreviation}}/get{{.StructName}}List [get]
|
||
func (a *{{.Abbreviation}}) Get{{.StructName}}List(c *gin.Context) {
|
||
var pageInfo request.{{.StructName}}Search
|
||
err := c.ShouldBindQuery(&pageInfo)
|
||
if err != nil {
|
||
response.FailWithMessage(err.Error(), c)
|
||
return
|
||
}
|
||
list, total, err := service{{ .StructName }}.Get{{.StructName}}InfoList(pageInfo)
|
||
if err != nil {
|
||
global.GVA_LOG.Error("获取失败!", zap.Error(err))
|
||
response.FailWithMessage("获取失败", c)
|
||
return
|
||
}
|
||
response.OkWithDetailed(response.PageResult{
|
||
List: list,
|
||
Total: total,
|
||
Page: pageInfo.Page,
|
||
PageSize: pageInfo.PageSize,
|
||
}, "获取成功", c)
|
||
}
|
||
|
||
{{- if .HasDataSource }}
|
||
// Get{{.StructName}}DataSource 获取{{.StructName}}的数据源
|
||
// @Tags {{.StructName}}
|
||
// @Summary 获取{{.StructName}}的数据源
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Success 200 {object} response.Response{data=object,msg=string} "查询成功"
|
||
// @Router /{{.Abbreviation}}/get{{.StructName}}DataSource [get]
|
||
func (a *{{.Abbreviation}}) Get{{.StructName}}DataSource(c *gin.Context) {
|
||
// 此接口为获取数据源定义的数据
|
||
dataSource, err := service{{ .StructName }}.Get{{.StructName}}DataSource()
|
||
if err != nil {
|
||
global.GVA_LOG.Error("查询失败!", zap.Error(err))
|
||
response.FailWithMessage("查询失败", c)
|
||
return
|
||
}
|
||
response.OkWithData(dataSource, c)
|
||
}
|
||
{{- end }}
|
||
|
||
// Get{{.StructName}}Public 不需要鉴权的{{.Description}}接口
|
||
// @Tags {{.StructName}}
|
||
// @Summary 不需要鉴权的{{.Description}}接口
|
||
// @accept application/json
|
||
// @Produce application/json
|
||
// @Param data query request.{{.StructName}}Search true "分页获取{{.Description}}列表"
|
||
// @Success 200 {object} response.Response{data=object,msg=string} "获取成功"
|
||
// @Router /{{.Abbreviation}}/get{{.StructName}}Public [get]
|
||
func (a *{{.Abbreviation}}) Get{{.StructName}}Public(c *gin.Context) {
|
||
// 此接口不需要鉴权 示例为返回了一个固定的消息接口,一般本接口用于C端服务,需要自己实现业务逻辑
|
||
response.OkWithDetailed(gin.H{"info": "不需要鉴权的{{.Description}}接口信息"}, "获取成功", c)
|
||
}
|