package logic import ( "context" "jyBXCore/rpc/service" "jyBXCore/rpc/internal/svc" "jyBXCore/rpc/type/bxcore" "github.com/zeromicro/go-zero/core/logx" ) type ParticipatePersonsLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewParticipatePersonsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ParticipatePersonsLogic { return &ParticipatePersonsLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 当前部门/企业下参标人员信息 func (l *ParticipatePersonsLogic) ParticipatePersons(in *bxcore.ParticipatePersonsReq) (*bxcore.ParticipatePersonsRes, error) { return service.GetParticipatePersonInfo(in), nil }