package logic import ( "context" "jyBXSubscribe/rpc/model" "jyBXSubscribe/rpc/internal/svc" "jyBXSubscribe/rpc/type/bxsubscribe" "github.com/zeromicro/go-zero/core/logx" ) type DeriveShowLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewDeriveShowLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DeriveShowLogic { return &DeriveShowLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 自动数据导出筛选条件查询 func (l *DeriveShowLogic) DeriveShow(in *bxsubscribe.DeriveReq) (*bxsubscribe.DeriveRes, error) { return model.ScreeningList(in.UserId), nil }