tianyuan-api-server/apps/api/internal/logic/YYSY/yysyd50flogic.go

32 lines
624 B
Go
Raw Normal View History

2024-10-02 00:57:17 +08:00
package YYSY
import (
"context"
2024-10-12 21:35:35 +08:00
"tianyuan-api/pkg/errs"
2024-10-02 00:57:17 +08:00
"tianyuan-api/apps/api/internal/svc"
"tianyuan-api/apps/api/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type YYSYD50FLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewYYSYD50FLogic(ctx context.Context, svcCtx *svc.ServiceContext) *YYSYD50FLogic {
return &YYSYD50FLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
2024-10-12 21:35:35 +08:00
func (l *YYSYD50FLogic) YYSYD50F(req *types.Request) (resp *types.Response, err *errs.AppError) {
2024-10-02 00:57:17 +08:00
// todo: add your logic here and delete this line
return
}