fusenapi/goctl_template/api/logic.tpl

26 lines
546 B
Smarty
Raw Normal View History

2023-06-05 09:56:55 +00:00
package {{.pkgName}}
import (
{{.imports}}
)
type {{.logic}} struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func New{{.logic}}(ctx context.Context, svcCtx *svc.ServiceContext) *{{.logic}} {
return &{{.logic}}{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *{{.logic}}) {{.function}}({{.request}}) (resp *types.Response) {
2023-06-07 03:57:04 +00:00
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
2023-06-05 09:56:55 +00:00
2023-06-07 10:30:58 +00:00
{{.returnString}} resp.SetStatus(basic.CodeOK)
2023-06-05 09:56:55 +00:00
}