26 lines
546 B
Smarty
Raw Normal View History

2023-06-05 17:56:55 +08: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 11:57:04 +08:00
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
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
}