package logic import ( "context" "jyBXCore/rpc/internal/svc" "jyBXCore/rpc/type/bxcore" "github.com/zeromicro/go-zero/core/logx" ) type ParticipateInfoLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewParticipateInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ParticipateInfoLogic { return &ParticipateInfoLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 详情页参标信息接口 func (l *ParticipateInfoLogic) ParticipateInfo(in *bxcore.ParticipateInfoReq) (*bxcore.ParticipateInfoRes, error) { // todo: add your logic here and delete this line return &bxcore.ParticipateInfoRes{}, nil }