From dcc11e86bb7d063af1e6b7e9eccff3e292cbf6cb Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期三, 19 三月 2025 17:03:21 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/LifePaymentApi --- LifePayment/LifePayment.Domain/Common/IChannelFilter.cs | 29 ----------------------------- 1 files changed, 0 insertions(+), 29 deletions(-) diff --git a/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs b/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs index 44235d7..cf568d3 100644 --- a/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs +++ b/LifePayment/LifePayment.Domain/Common/IChannelFilter.cs @@ -7,37 +7,8 @@ { public interface IChannelFilter { - - public IQueryable<LifePayOrder> GetChannelLifePayOrderFilter(IQueryable<LifePayOrder> query); public IQueryable<LifePayUser> GetChannelLifePayUserFilter(IQueryable<LifePayUser> 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 interface IChannelData - //{ - // public Guid ChannleId { get; set; } - //} - - //public class ChannelFilterInput - //{ - // public List<Guid> Channels { get; set; } = new List<Guid>(); - //} - } -- Gitblit v1.9.1