From 7a540f529d2c9a541993bc9818cad9c9093fec91 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 03 十二月 2025 11:04:35 +0800
Subject: [PATCH] fix: bug
---
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