30 lines
663 B
Smarty
Raw Normal View History

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