Skip to content

Commit

Permalink
fix: api layer can not get autofill primary key in automatically gene…
Browse files Browse the repository at this point in the history
…rated code (flipped-aurora#1384)
  • Loading branch information
dy033 committed Mar 25, 2023
1 parent 5b86bdf commit c6521b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/resource/autocode_template/server/api.go.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func ({{.Abbreviation}}Api *{{.StructName}}Api) Create{{.StructName}}(c *gin.Con
return
}
{{- end }}
if err := {{.Abbreviation}}Service.Create{{.StructName}}({{.Abbreviation}}); err != nil {
if err := {{.Abbreviation}}Service.Create{{.StructName}}(&{{.Abbreviation}}); err != nil {
global.GVA_LOG.Error("创建失败!", zap.Error(err))
response.FailWithMessage("创建失败", c)
} else {
Expand Down
4 changes: 2 additions & 2 deletions server/resource/autocode_template/server/service.go.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ type {{.StructName}}Service struct {

// Create{{.StructName}} 创建{{.StructName}}记录
// Author [piexlmax](https://github.com/piexlmax)
func ({{.Abbreviation}}Service *{{.StructName}}Service) Create{{.StructName}}({{.Abbreviation}} {{.Package}}.{{.StructName}}) (err error) {
err = {{$db}}.Create(&{{.Abbreviation}}).Error
func ({{.Abbreviation}}Service *{{.StructName}}Service) Create{{.StructName}}({{.Abbreviation}} *{{.Package}}.{{.StructName}}) (err error) {
err = {{$db}}.Create({{.Abbreviation}}).Error
return err
}

Expand Down

0 comments on commit c6521b1

Please sign in to comment.