2024-10-02 00:57:17 +08:00
|
|
|
package YYSY
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
"tianyuan-api/apps/api/internal/svc"
|
|
|
|
"tianyuan-api/apps/api/internal/types"
|
2024-10-12 21:35:35 +08:00
|
|
|
"tianyuan-api/pkg/errs"
|
2024-10-02 00:57:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type YYSYF7DBLogic struct {
|
|
|
|
logx.Logger
|
|
|
|
ctx context.Context
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewYYSYF7DBLogic(ctx context.Context, svcCtx *svc.ServiceContext) *YYSYF7DBLogic {
|
|
|
|
return &YYSYF7DBLogic{
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
ctx: ctx,
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-12 21:35:35 +08:00
|
|
|
func (l *YYSYF7DBLogic) YYSYF7DB(req *types.Request) (*types.Response, *errs.AppError) {
|
2024-10-02 00:57:17 +08:00
|
|
|
|
|
|
|
return &types.Response{}, nil
|
|
|
|
}
|