From f77d6b92094b555e35f2271e72aa1aeb84164acc Mon Sep 17 00:00:00 2001 From: SliverHorn <45428434+SliverHorn@users.noreply.github.com> Date: Fri, 2 Jul 2021 17:18:51 +0800 Subject: [PATCH] Update service.go.tpl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 回参与入参,我觉得可以去掉,基本调用的时候都知道是什么类型,就没必要写了 --- .../resource/template/server/service.go.tpl | 38 ++++--------------- 1 file changed, 7 insertions(+), 31 deletions(-) diff --git a/server/resource/template/server/service.go.tpl b/server/resource/template/server/service.go.tpl index b9b5111f..b1da36c5 100644 --- a/server/resource/template/server/service.go.tpl +++ b/server/resource/template/server/service.go.tpl @@ -7,66 +7,42 @@ import ( ) // Create{{.StructName}} 创建{{.StructName}}记录 -// @author: [piexlmax](https://github.com/piexlmax) -// @function: Create{{.StructName}} -// @description: 创建{{.StructName}}记录 -// @param: {{.Abbreviation}} model.{{.StructName}} -// @return: err error +// Author [piexlmax](https://github.com/piexlmax) func Create{{.StructName}}({{.Abbreviation}} model.{{.StructName}}) (err error) { err = global.GVA_DB.Create(&{{.Abbreviation}}).Error return err } // Delete{{.StructName}} 删除{{.StructName}}记录 -// @author: [piexlmax](https://github.com/piexlmax) -// @function: Delete{{.StructName}} -// @description: 删除{{.StructName}}记录 -// @param: {{.Abbreviation}} model.{{.StructName}} -// @return: err error +// Author [piexlmax](https://github.com/piexlmax) func Delete{{.StructName}}({{.Abbreviation}} model.{{.StructName}}) (err error) { err = global.GVA_DB.Delete(&{{.Abbreviation}}).Error return err } // Delete{{.StructName}}ByIds 批量删除{{.StructName}}记录 -// @author: [piexlmax](https://github.com/piexlmax) -// @function: Delete{{.StructName}}ByIds -// @description: 批量删除{{.StructName}}记录 -// @param: ids request.IdsReq -// @return: err error +// Author [piexlmax](https://github.com/piexlmax) func Delete{{.StructName}}ByIds(ids request.IdsReq) (err error) { err = global.GVA_DB.Delete(&[]model.{{.StructName}}{},"id in ?",ids.Ids).Error return err } // Update{{.StructName}} 更新{{.StructName}}记录 -// @author: [piexlmax](https://github.com/piexlmax) -// @function: Update{{.StructName}} -// @description: 更新{{.StructName}}记录 -// @param: {{.Abbreviation}} *model.{{.StructName}} -// @return: err error +// Author [piexlmax](https://github.com/piexlmax) func Update{{.StructName}}({{.Abbreviation}} model.{{.StructName}}) (err error) { err = global.GVA_DB.Save(&{{.Abbreviation}}).Error return err } // Get{{.StructName}} 根据id获取{{.StructName}}记录 -// @author: [piexlmax](https://github.com/piexlmax) -// @function: Get{{.StructName}} -// @description: 根据id获取{{.StructName}}记录 -// @param: id uint -// @return: err error, {{.Abbreviation}} model.{{.StructName}} +// Author [piexlmax](https://github.com/piexlmax) func Get{{.StructName}}(id uint) (err error, {{.Abbreviation}} model.{{.StructName}}) { err = global.GVA_DB.Where("id = ?", id).First(&{{.Abbreviation}}).Error return } // Get{{.StructName}}InfoList 分页获取{{.StructName}}记录 -// @author: [piexlmax](https://github.com/piexlmax) -// @function: Get{{.StructName}}InfoList -// @description: 分页获取{{.StructName}}记录 -// @param: info request.{{.StructName}}Search -// @return: err error, list interface{}, total int64 +// Author [piexlmax](https://github.com/piexlmax) func Get{{.StructName}}InfoList(info request.{{.StructName}}Search) (err error, list interface{}, total int64) { limit := info.PageSize offset := info.PageSize * (info.Page - 1) @@ -102,4 +78,4 @@ func Get{{.StructName}}InfoList(info request.{{.StructName}}Search) (err error, err = db.Count(&total).Error err = db.Limit(limit).Offset(offset).Find(&{{.Abbreviation}}s).Error return err, {{.Abbreviation}}s, total -} \ No newline at end of file +}