package logic import ( "context" "jyBXCore/rpc/internal/svc" "jyBXCore/rpc/type/bxcore" "github.com/zeromicro/go-zero/core/logx" ) type ParticipateContentLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewParticipateContentLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ParticipateContentLogic { return &ParticipateContentLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 获取投标状态信息 func (l *ParticipateContentLogic) ParticipateContent(in *bxcore.ParticipateContentReq) (*bxcore.ParticipateContentRes, error) { // todo: add your logic here and delete this line return &bxcore.ParticipateContentRes{}, nil }