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 YYSY4B37Logic struct {
|
|
|
|
logx.Logger
|
|
|
|
ctx context.Context
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewYYSY4B37Logic(ctx context.Context, svcCtx *svc.ServiceContext) *YYSY4B37Logic {
|
|
|
|
return &YYSY4B37Logic{
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
ctx: ctx,
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-12 21:35:35 +08:00
|
|
|
func (l *YYSY4B37Logic) YYSY4B37(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
|
|
|
|
}
|