123456789101112131415161718192021222324252627282930 |
- 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
- }
|