fusenapi/goctl_template/api/logic.tpl

30 lines
663 B
Smarty
Raw Normal View History

2023-06-05 09:56:55 +00:00
package {{.pkgName}}
import (
2023-06-12 07:17:42 +00:00
"fusenapi/utils/auth"
"fusenapi/utils/basic"
2023-06-05 09:56:55 +00:00
{{.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,
}
}
2023-06-12 07:17:42 +00:00
func (l *{{.logic}}) {{.function}}({{.request}}, userinfo *auth.UserInfo) (resp *types.Response) {
2023-06-07 03:57:04 +00:00
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
2023-06-12 07:17:42 +00:00
// userinfo 传入值时, 一定不为null
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
}