From e7d1ef3eef4dcbec4f7fae27542e94cc0bbf89c8 Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期三, 02 四月 2025 17:18:19 +0800 Subject: [PATCH] fix:bug修复 --- LifePayment/LifePayment.Domain/Common/IChannelFilter.cs | 29 +---------------------------- 1 files changed, 1 insertions(+), 28 deletions(-) diff --git a/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs b/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs index d56f0eb..cf568d3 100644 --- a/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs +++ b/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs @@ -7,35 +7,8 @@ { public interface IChannelFilter { - - public IQueryable<LifePayOrder> GetChannelLifePayOrderFilter(IQueryable<LifePayOrder> query); - //public static IQueryable<T> GetChannleQuery<T>(this IQueryable<T> query, ChannelFilterInput input) where T : class, IChannelData - //{ - // if (query == null) - // { - // return query; - // } - // if (input.Channels != null && input.Channels.Any()) - // { - // query = query.Where(r => input.Channels.Contains(r.ChannelId)); - // } - // return query; - //} - + public IQueryable<LifePayUser> GetChannelLifePayUserFilter(IQueryable<LifePayUser> query); } - - - - //public interface IChannelData - //{ - // public Guid ChannleId { get; set; } - //} - - //public class ChannelFilterInput - //{ - // public List<Guid> Channels { get; set; } = new List<Guid>(); - //} - } -- Gitblit v1.9.1