李昊 4 年 前
コミット
d6a65d369b

+ 14 - 0
gx_api/GxPress/Model/GxPress.EnumConst/AllTypeConst.cs

@@ -90,4 +90,18 @@ namespace GxPress.EnumConst
         [Description("图书")]
         Books = 730,
     }
+    /// <summary>
+    /// 话题笔记系统分组
+    /// </summary>
+    public enum TopicNotoGropConst
+    {
+        [Description("全部")]
+        All = 0,
+        [Description("我的")]
+        My = -1,
+        [Description("同单位")]
+        Work = -2,
+        [Description("推荐")]
+        Recommend = -3,
+    }
 }

+ 9 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/DepartmentUser/DepartmentUserRepository.cs

@@ -61,6 +61,15 @@ namespace GxPress.Repository.Implement.DepartmentUser
             return await _repository.GetAllAsync<int>(Q.Select(nameof(Entity.DepartmentUser.UserId)).GroupBy(nameof(Entity.DepartmentUser.UserId)));
         }
         /// <summary>
+        /// 根据部门ID获取部门下面的所有用户
+        /// </summary>
+        /// <param name="departmentIds"></param>
+        /// <returns></returns>
+        public async Task<IEnumerable<int>> GetUserIdsByDepartmentIdsAsync(IEnumerable<int> departmentIds)
+        {
+            return await _repository.GetAllAsync<int>(Q.Select(nameof(Entity.DepartmentUser.UserId)).WhereIn(nameof(Entity.DepartmentUser.DepartmentId), departmentIds).GroupBy(nameof(Entity.DepartmentUser.UserId)));
+        }
+        /// <summary>
         /// 判断是否有部门
         /// </summary>
         /// <param name="userId"></param>

+ 3 - 195
gx_api/GxPress/Repository/GxPress.Repository.Implement/TopicRepository.cs

@@ -423,7 +423,7 @@ namespace GxPress.Repository.Implement
         /// </summary>
         /// <param name="request"></param>
         /// <returns></returns>
-        public async Task<PagedList<TopicListPageResult>> GetTopicPage(TopicPageSearchRequest request)
+        public async Task<PagedList<TopicListPageResult>> GetTopicPage(TopicPageSearchRequest request, string sql, string countSql)
         {
             var result = new PagedList<TopicListPageResult>();
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
@@ -435,7 +435,7 @@ namespace GxPress.Repository.Implement
             //     //获取部门下面的员工
             //     var users = await _userRepository.GetUserByDepartmentIdAsync(department.Id);
             // }
-            result.Items = await connection.QueryAsync<TopicListPageResult, User, TopicListPageResult>(AssembleSql(request), (topicListPageResult, user) =>
+            result.Items = await connection.QueryAsync<TopicListPageResult, User, TopicListPageResult>(sql, (topicListPageResult, user) =>
               {
                   topicListPageResult.UserName = user != null ? user.Name : "";
                   topicListPageResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
@@ -443,7 +443,7 @@ namespace GxPress.Repository.Implement
                   topicListPageResult.FolderResult.FolderName = topicListPageResult.FolderName;
                   return topicListPageResult;
               }, splitOn: "Id,Name");
-            result.Total = await connection.ExecuteScalarAsync<int>(AssembleSqlCount(request));
+            result.Total = await connection.ExecuteScalarAsync<int>(countSql);
             connection.Dispose();
             return result;
         }
@@ -605,197 +605,5 @@ namespace GxPress.Repository.Implement
             result.Total = await connection.ExecuteScalarAsync<int>(sql);
             return result;
         }
-        public string AssembleSql(TopicPageSearchRequest request)
-        {
-            var topicTypeValue = GxPress.EnumConst.AllTypeConst.Note.GetHashCode();
-            var sql = $@"SELECT 
-                                a.*,
-                                (SELECT 
-                                        FolderName
-                                    FROM
-                                        tede_middle
-                                    WHERE
-                                        id = a.FolderId) AS FolderName,
-                                (SELECT 
-                                        COUNT(1)
-                                    FROM
-                                        tede_analyze
-                                    WHERE
-                                         TypeValue = {topicTypeValue}
-                                            AND SourceId = a.Id
-                                            AND AnalyzeType = 1) AS PraiseCount,
-                                (SELECT 
-                                        COUNT(1)
-                                    FROM
-                                        tede_analyze
-                                    WHERE
-                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
-                                            AND SourceId = a.Id
-                                            AND AnalyzeType = 1
-                                    LIMIT 0 , 1) AS IsPraise,
-                                (SELECT 
-                                        COUNT(1)
-                                    FROM
-                                        tede_comment
-                                    WHERE
-                                        ArticleId = a.Id AND TypeValue = {topicTypeValue}
-                                            AND Pid = 0) AS CommentCount,
-                                (SELECT 
-                                        COUNT(1)
-                                    FROM
-                                        tede_analyze
-                                    WHERE
-                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
-                                            AND SourceId = a.Id
-                                            AND AnalyzeType = 4) AS RetransmissionCount,
-                                (SELECT 
-                                        COUNT(1)
-                                    FROM
-                                        tede_analyze
-                                    WHERE
-                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
-                                            AND SourceId = a.Id
-                                            AND AnalyzeType = 4
-                                    LIMIT 0 , 1) AS IsRetransmission,
-                                (SELECT 
-                                        COUNT(1)
-                                    FROM
-                                        tede_analyze
-                                    WHERE
-                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
-                                            AND SourceId = a.Id
-                                            AND AnalyzeType = 3
-                                    LIMIT 0 , 1) AS IsCollect,
-                                b.Name, b.AvatarUrl
-                                                    FROM
-                                                        tede_note a
-                                                            INNER JOIN
-                                                        tede_user b ON a.UserId = b.Id
-                                                            INNER JOIN
-                                                        tede_middle c ON c.MiddleId = a.Id
-                                                    WHERE
-                                                        c.FolderType = {topicTypeValue} AND a.IsTopic = 1
-                                                            AND (a.FolderId IN (SELECT 
-                                                                MiddleId
-                                                            FROM
-                                                                tede_folder_user
-                                                            WHERE
-                                                                MiddleId = a.FolderId AND UserId = {request.UserId})
-                                                            OR a.UserId IN (SELECT 
-                                                                Id
-                                                            FROM
-                                                                tede_user
-                                                            WHERE
-                                                                1 = (SELECT 
-                                                                        RoleId
-                                                                    FROM
-                                                                        tede_middle
-                                                                    WHERE
-                                                                        id = a.FolderId) and Id=a.UserId
-                                                                    ))";
-
-            if (request.TopicGroupIds.Count > 0)
-            {
-                var topicGroupId = "";
-                foreach (var item in request.TopicGroupIds)
-                {
-                    if (item <= 0)
-                        continue;
-                    topicGroupId += $"{item},";
-                }
-                if (!string.IsNullOrEmpty(topicGroupId))
-                {
-                    topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
-                    sql += $@" AND a.UserId IN (SELECT 
-                                        UserId
-                                    FROM
-                                        tede_topic_group_user
-                                    WHERE
-                                        TopicGroupId IN ({topicGroupId}))";
-                }
-            }
-            if (request.TopicGroupIds.Count > 0)
-            {
-                //我的
-                if (request.TopicGroupIds.Contains(-1))
-                {
-                    sql += $" and a.UserId={request.UserId} ";
-                }
-            }
-            if (!string.IsNullOrWhiteSpace(request.Keyword))
-            {
-                sql += $@"  AND (b.Name LIKE '%{request.Keyword}%'
-                                    OR a.Title LIKE '%{request.Keyword}%'
-                                    OR a.HtmlContent LIKE '%{request.Keyword}%')";
-            }
-            sql += $@"  ORDER BY a.CreatedDate DESC
-                        LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
-            return sql;
-        }
-        public string AssembleSqlCount(TopicPageSearchRequest request)
-        {
-            var sql = $@"SELECT   count(1) FROM
-                                                        tede_note a
-                                                            INNER JOIN
-                                                        tede_user b ON a.UserId = b.Id
-                                                            INNER JOIN
-                                                        tede_middle c ON c.MiddleId = a.Id
-                                                    WHERE
-                                                        c.FolderType = 4 AND a.IsTopic = 1
-                                                            AND (a.FolderId IN (SELECT 
-                                                                MiddleId
-                                                            FROM
-                                                                tede_folder_user
-                                                            WHERE
-                                                                MiddleId = a.FolderId AND UserId = {request.UserId})
-                                                            OR a.UserId IN (SELECT 
-                                                                Id
-                                                            FROM
-                                                                tede_user
-                                                            WHERE
-                                                                1 = (SELECT 
-                                                                        RoleId
-                                                                    FROM
-                                                                        tede_middle
-                                                                    WHERE
-                                                                        id = a.FolderId)
-                                                                    AND id = a.UserId))";
-
-            if (request.TopicGroupIds.Count > 0)
-            {
-                var topicGroupId = "";
-                foreach (var item in request.TopicGroupIds)
-                {
-                    if (item <= 0)
-                        continue;
-                    topicGroupId += $"{item},";
-                }
-                if (!string.IsNullOrEmpty(topicGroupId))
-                {
-                    topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
-                    sql += $@" AND a.UserId IN (SELECT 
-                                        UserId
-                                    FROM
-                                        tede_topic_group_user
-                                    WHERE
-                                        TopicGroupId IN ({topicGroupId}))";
-                }
-            }
-            if (request.TopicGroupIds.Count > 0)
-            {
-                //我的
-                if (request.TopicGroupIds.Contains(-1))
-                {
-                    sql += $" and a.UserId={request.UserId} ";
-                }
-            }
-            if (!string.IsNullOrWhiteSpace(request.Keyword))
-            {
-                sql += $@"  AND (b.Name LIKE '%{request.Keyword}%'
-                                    OR a.Title LIKE '%{request.Keyword}%'
-                                    OR a.HtmlContent LIKE '%{request.Keyword}%')";
-            }
-            return sql;
-        }
     }
 }

+ 6 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/DepartmentUser/IDepartmentUserRepository.cs

@@ -49,5 +49,11 @@ namespace GxPress.Repository.Interface.DepartmentUser
         /// <param name="departmentId"></param>
         /// <returns></returns>
         Task<IEnumerable<int>> GetUserIdsAsync(IEnumerable<int> departmentIds);
+        /// <summary>
+        /// 根据部门ID获取部门下面的所有用户
+        /// </summary>
+        /// <param name="departmentIds"></param>
+        /// <returns></returns>
+        Task<IEnumerable<int>> GetUserIdsByDepartmentIdsAsync(IEnumerable<int> departmentIds);
     }
 }

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Interface/ITopicRepository.cs

@@ -49,7 +49,7 @@ namespace GxPress.Repository.Interface
         /// <returns></returns>
         Task<List<JobTopicResult>> ExecuteTopic();
 
-        Task<PagedList<TopicListPageResult>> GetTopicPage(TopicPageSearchRequest request);
+        Task<PagedList<TopicListPageResult>> GetTopicPage(TopicPageSearchRequest request,string sql, string countSql);
 
         Task<PagedList<TopicListPageResult>> GetTopicByGroupAsync(TopicPageSearchRequest request);
         /// <summary>

+ 6 - 5
gx_api/GxPress/Service/GxPress.Service.Implement/Topic/TopicGroupService.cs

@@ -1,9 +1,10 @@
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using GxPress.Entity.Topic;
+using GxPress.EnumConst;
 using GxPress.Repository.Interface.Topic;
 using GxPress.Service.Interface.Topic;
-
+using GxPress.Common.Tools;
 namespace GxPress.Service.Implement.Topic
 {
     public class TopicGroupService : ITopicGroupService
@@ -22,10 +23,10 @@ namespace GxPress.Service.Implement.Topic
         public async Task<IEnumerable<TopicGroup>> GetTopicGroupsAsync(int userId)
         {
             var result = new List<TopicGroup>() {
-            new TopicGroup {Id=-1,Name="我的"},
-            new TopicGroup {Id=-2,Name="同单位"},
-            new TopicGroup {Id=-3,Name="推荐" } ,
-            new TopicGroup {Id=0,Name="全部" }};
+            new TopicGroup {Id=TopicNotoGropConst.My.GetHashCode(),Name=TopicNotoGropConst.My.GetDescriptionOriginal()},
+            new TopicGroup {Id=TopicNotoGropConst.Work.GetHashCode(),Name=TopicNotoGropConst.Work.GetDescriptionOriginal()},
+            new TopicGroup {Id=TopicNotoGropConst.Recommend.GetHashCode(),Name=TopicNotoGropConst.Recommend.GetDescriptionOriginal() } ,
+            new TopicGroup {Id=TopicNotoGropConst.All.GetHashCode(),Name=TopicNotoGropConst.All.GetDescriptionOriginal()}};
             result.AddRange(await topicGroupRepository.GetTopicGroupsAsync(userId));
             return result;
         }

+ 247 - 3
gx_api/GxPress/Service/GxPress.Service.Implement/Topic/TopicService.cs

@@ -20,15 +20,16 @@ using Newtonsoft.Json;
 using GxPress.Repository.Interface.Visit;
 using GxPress.Service.Interface.Visit;
 using GxPress.Service.Interface.Analyze;
+using GxPress.Repository.Interface.DepartmentUser;
 using GxPress.EnumConst;
 
 namespace GxPress.Service.Implement.Topic
 {
     public partial class TopicService : ITopicService
     {
-
         private readonly ITopicRepository _topicRepository;
         private readonly IUserRepository _userRepository;
+        private readonly IDepartmentUserRepository departmentUserRepository;
         private readonly ITopicAddresseeRepository _topicAddresseeRepository;
         private readonly IDepartmentRepository _departmentRepository;
         private readonly ITopicGroupRepository _topicGroupRepository;
@@ -49,7 +50,7 @@ namespace GxPress.Service.Implement.Topic
             ITopicGroupUserRepository topicGroupUserRepository, IAnalyzeService analyzeService,
             ICommentRepository commentRepository, IMapper mapper, IDepartmentRepository departmentRepository,
             IGroupUserRepository groupUserRepository, IFolderUserRepository folderUserRepository,
-            INoteService noteService, IMiddleRepository middleRepository, IVisitRepository visitRepository, IVisitService visitService)
+            INoteService noteService, IMiddleRepository middleRepository, IVisitRepository visitRepository, IVisitService visitService, IDepartmentUserRepository departmentUserRepository)
         {
             _topicRepository = topicRepository;
             _userRepository = userRepository;
@@ -66,6 +67,7 @@ namespace GxPress.Service.Implement.Topic
             _middleRepository = middleRepository;
             _visitRepository = visitRepository;
             _visitService = visitService;
+            this.departmentUserRepository = departmentUserRepository;
         }
 
 
@@ -224,6 +226,248 @@ namespace GxPress.Service.Implement.Topic
             }
             return result;
         }
+        public async Task<string> GetTopicPageSqlAsync(TopicPageSearchRequest request)
+        {
+            var topicTypeValue = GxPress.EnumConst.AllTypeConst.Note.GetHashCode();
+            var sql = $@"SELECT 
+                                a.*,
+                                (SELECT 
+                                        FolderName
+                                    FROM
+                                        tede_middle
+                                    WHERE
+                                        id = a.FolderId) AS FolderName,
+                                (SELECT 
+                                        COUNT(1)
+                                    FROM
+                                        tede_analyze
+                                    WHERE
+                                         TypeValue = {topicTypeValue}
+                                            AND SourceId = a.Id
+                                            AND AnalyzeType = 1) AS PraiseCount,
+                                (SELECT 
+                                        COUNT(1)
+                                    FROM
+                                        tede_analyze
+                                    WHERE
+                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
+                                            AND SourceId = a.Id
+                                            AND AnalyzeType = 1
+                                    LIMIT 0 , 1) AS IsPraise,
+                                (SELECT 
+                                        COUNT(1)
+                                    FROM
+                                        tede_comment
+                                    WHERE
+                                        ArticleId = a.Id AND TypeValue = {topicTypeValue}
+                                            AND Pid = 0) AS CommentCount,
+                                (SELECT 
+                                        COUNT(1)
+                                    FROM
+                                        tede_analyze
+                                    WHERE
+                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
+                                            AND SourceId = a.Id
+                                            AND AnalyzeType = 4) AS RetransmissionCount,
+                                (SELECT 
+                                        COUNT(1)
+                                    FROM
+                                        tede_analyze
+                                    WHERE
+                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
+                                            AND SourceId = a.Id
+                                            AND AnalyzeType = 4
+                                    LIMIT 0 , 1) AS IsRetransmission,
+                                (SELECT 
+                                        COUNT(1)
+                                    FROM
+                                        tede_analyze
+                                    WHERE
+                                        UserId = {request.UserId} AND TypeValue = {topicTypeValue}
+                                            AND SourceId = a.Id
+                                            AND AnalyzeType = 3
+                                    LIMIT 0 , 1) AS IsCollect,
+                                b.Name, b.AvatarUrl
+                                                    FROM
+                                                        tede_note a
+                                                            INNER JOIN
+                                                        tede_user b ON a.UserId = b.Id
+                                                            INNER JOIN
+                                                        tede_middle c ON c.MiddleId = a.Id
+                                                    WHERE
+                                                        c.FolderType = {topicTypeValue} AND a.IsTopic = 1
+                                                            AND (a.FolderId IN (SELECT 
+                                                                MiddleId
+                                                            FROM
+                                                                tede_folder_user
+                                                            WHERE
+                                                                MiddleId = a.FolderId AND UserId = {request.UserId})
+                                                            OR a.UserId IN (SELECT 
+                                                                Id
+                                                            FROM
+                                                                tede_user
+                                                            WHERE
+                                                                1 = (SELECT 
+                                                                        RoleId
+                                                                    FROM
+                                                                        tede_middle
+                                                                    WHERE
+                                                                        id = a.FolderId) and Id=a.UserId
+                                                                    ))";
+
+            if (request.TopicGroupIds.Count > 0)
+            {
+                var topicGroupId = "";
+                foreach (var item in request.TopicGroupIds)
+                {
+                    if (item <= 0)
+                        continue;
+                    topicGroupId += $"{item},";
+                }
+                if (!string.IsNullOrEmpty(topicGroupId))
+                {
+                    topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
+                    sql += $@" AND a.UserId IN (SELECT 
+                                        UserId
+                                    FROM
+                                        tede_topic_group_user
+                                    WHERE
+                                        TopicGroupId IN ({topicGroupId}))";
+                }
+            }
+            if (request.TopicGroupIds.Count > 0)
+            {
+                //我的
+                if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
+                {
+                    sql += $" and a.UserId={request.UserId} ";
+                }
+                //同单位
+                if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
+                {
+                    if (request.UserId > 0)
+                    {
+                        var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
+                        var departments = new List<Entity.Department>();
+                        foreach (var departmentId in departmentIds)
+                        {
+                            await _departmentRepository.GetDepartmentById(departmentId, departments);
+                        }
+                        if (departments.Count > 0)
+                        {
+                            var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
+                            if (userIds.Count() > 0)
+                            {
+                                var str = "";
+                                foreach (var item in userIds)
+                                    str += $"{item},";
+                                str = str.Remove(str.Length - 1, 1);
+                                sql += $" and a.UserId in({str})";
+                            }
+                        }
+                    }
+                }
+            }
+            if (!string.IsNullOrWhiteSpace(request.Keyword))
+            {
+                sql += $@"  AND (b.Name LIKE '%{request.Keyword}%'
+                                    OR a.Title LIKE '%{request.Keyword}%'
+                                    OR a.HtmlContent LIKE '%{request.Keyword}%')";
+            }
+            sql += $@"  ORDER BY a.CreatedDate DESC
+                        LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
+            return sql;
+        }
+        public async Task<string> AssembleSqlCount(TopicPageSearchRequest request)
+        {
+            var sql = $@"SELECT   count(1) FROM
+                                                        tede_note a
+                                                            INNER JOIN
+                                                        tede_user b ON a.UserId = b.Id
+                                                            INNER JOIN
+                                                        tede_middle c ON c.MiddleId = a.Id
+                                                    WHERE
+                                                        c.FolderType = 4 AND a.IsTopic = 1
+                                                            AND (a.FolderId IN (SELECT 
+                                                                MiddleId
+                                                            FROM
+                                                                tede_folder_user
+                                                            WHERE
+                                                                MiddleId = a.FolderId AND UserId = {request.UserId})
+                                                            OR a.UserId IN (SELECT 
+                                                                Id
+                                                            FROM
+                                                                tede_user
+                                                            WHERE
+                                                                1 = (SELECT 
+                                                                        RoleId
+                                                                    FROM
+                                                                        tede_middle
+                                                                    WHERE
+                                                                        id = a.FolderId)
+                                                                    AND id = a.UserId))";
+
+            if (request.TopicGroupIds.Count > 0)
+            {
+                var topicGroupId = "";
+                foreach (var item in request.TopicGroupIds)
+                {
+                    if (item <= 0)
+                        continue;
+                    topicGroupId += $"{item},";
+                }
+                if (!string.IsNullOrEmpty(topicGroupId))
+                {
+                    topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
+                    sql += $@" AND a.UserId IN (SELECT 
+                                        UserId
+                                    FROM
+                                        tede_topic_group_user
+                                    WHERE
+                                        TopicGroupId IN ({topicGroupId}))";
+                }
+            }
+            if (request.TopicGroupIds.Count > 0)
+            {
+                //我的
+                if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
+                {
+                    sql += $" and a.UserId={request.UserId} ";
+                }
+                //同单位
+                if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
+                {
+                    if (request.UserId > 0)
+                    {
+                        var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
+                        var departments = new List<Entity.Department>();
+                        foreach (var departmentId in departmentIds)
+                        {
+                            await _departmentRepository.GetDepartmentById(departmentId, departments);
+                        }
+                        if (departments.Count > 0)
+                        {
+                            var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
+                            if (userIds.Count() > 0)
+                            {
+                                var str = "";
+                                foreach (var item in userIds)
+                                    str += $"{item},";
+                                str = str.Remove(str.Length - 1, 1);
+                                sql += $" and a.UserId in({str})";
+                            }
+                        }
+                    }
+                }
+            }
+            if (!string.IsNullOrWhiteSpace(request.Keyword))
+            {
+                sql += $@"  AND (b.Name LIKE '%{request.Keyword}%'
+                                    OR a.Title LIKE '%{request.Keyword}%'
+                                    OR a.HtmlContent LIKE '%{request.Keyword}%')";
+            }
+            return sql;
+        }
         /// <summary>
         ///  新版 获取笔记话题列表
         /// </summary>
@@ -231,7 +475,7 @@ namespace GxPress.Service.Implement.Topic
         /// <returns></returns>
         public async Task<PagedList<TopicListPageResult>> GetTopicPageAsync(TopicPageSearchRequest request)
         {
-            var result = await _topicRepository.GetTopicPage(request);
+            var result = await _topicRepository.GetTopicPage(request, await GetTopicPageSqlAsync(request), await AssembleSqlCount(request));
             //获取数量
             // result.Total = 10;
             foreach (var item in result.Items)