package logic import ( "context" "net/http" "jyBXCore/api/internal/svc" "jyBXCore/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type ParticipateSetUpInfoLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext r *http.Request } func NewParticipateSetUpInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *http.Request) *ParticipateSetUpInfoLogic { return &ParticipateSetUpInfoLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, r: r, } } func (l *ParticipateSetUpInfoLogic) ParticipateSetUpInfo(req *types.ParticipateSetUpInfoReq) (resp *types.CommonResp, err error) { logx.Info(req) return }