package logic import ( "context" "jyBXCore/rpc/internal/svc" "jyBXCore/rpc/type/bxcore" "github.com/zeromicro/go-zero/core/logx" ) type ParticipateShowLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewParticipateShowLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ParticipateShowLogic { return &ParticipateShowLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 列表数据参标信息接口 func (l *ParticipateShowLogic) ParticipateShow(in *bxcore.ParticipateShowReq) (*bxcore.ParticipateShowRes, error) { // todo: add your logic here and delete this line return &bxcore.ParticipateShowRes{}, nil }