From 0a6ddcc8360063c8138965b69baf1fb563f6a0d8 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期二, 20 五月 2025 10:58:45 +0800
Subject: [PATCH] build:.gitignore添加../.vs/

---
 LifePayment/LifePayment.Domain/Common/AbstractChannelFilter.cs |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/LifePayment/LifePayment.Domain/Common/AbstractChannelFilter.cs b/LifePayment/LifePayment.Domain/Common/AbstractChannelFilter.cs
index 4c7efd3..e2fbefc 100644
--- a/LifePayment/LifePayment.Domain/Common/AbstractChannelFilter.cs
+++ b/LifePayment/LifePayment.Domain/Common/AbstractChannelFilter.cs
@@ -12,14 +12,16 @@
 
 namespace LifePayment.Domain.Common
 {
-    public abstract class AbstractChannelFilter
+    public abstract class AbstractChannelFilter : IChannelFilter, ISingletonDependency
     {
-        public abstract Task<IQueryable<ChannelsBase>> GetChannelFilter(IQueryable<ChannelsBase> query);
-
-
         public IAbpLazyServiceProvider LazyServiceProvider { get; set; }
+
         protected ICurrentUser CurrentUser => LazyServiceProvider.LazyGetRequiredService<ICurrentUser>();
 
         protected IRepository<UserChannle> UserChannleRepository => LazyServiceProvider.LazyGetRequiredService<IRepository<UserChannle>>();
+
+        public abstract IQueryable<LifePayOrder> GetChannelLifePayOrderFilter(IQueryable<LifePayOrder> query);
+
+        public abstract IQueryable<LifePayUser> GetChannelLifePayUserFilter(IQueryable<LifePayUser> query);
     }
 }

--
Gitblit v1.9.1