李昊 4 years ago
parent
commit
7c5fa9ba4b

+ 5 - 0
gx_api/GxPress/Infrastructure/GxPress.Common/Page/PagedList.cs

@@ -46,5 +46,10 @@ namespace GxPress.Common.Page
         /// </summary>
         /// <value></value>
         public int DraftId { get; set; }
+        /// <summary>
+        /// 草稿数量
+        /// </summary>
+        /// <value></value>
+        public int DraftCount { get; set; }
     }
 }

+ 13 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Note/NoteRepository.cs

@@ -837,6 +837,19 @@ namespace GxPress.Repository.Implement.Note
             query.Select(nameof(Entity.Note.Note.Id));
             return await _repository.GetAsync<int>(query);
         }
+        /// <summary>
+        /// 获取用户最新的草稿Id
+        /// </summary>
+        /// <param name="userId"></param>
+        /// <returns></returns>
+        public async Task<int> GetDraftCountAsync(int userId, bool isTopic)
+        {
+            var query = Q.NewQuery();
+            query.Where(nameof(Entity.Note.Note.UserId), userId);
+            query.Where(nameof(Entity.Note.Note.IsTopic), isTopic);
+            query.Where(nameof(Entity.Note.Note.IsDraft), true);
+            return await _repository.CountAsync(query);
+        }
     }
 }
 

+ 6 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/Note/INoteRepository.cs

@@ -93,5 +93,11 @@ namespace GxPress.Repository.Interface.Note
         /// <param name="userId"></param>
         /// <returns></returns>
         Task<int> GetNoteIdByDraftAsync(int userId, bool isTopic);
+        /// <summary>
+        /// 获取用户最新的草稿Id
+        /// </summary>
+        /// <param name="userId"></param>
+        /// <returns></returns>
+        Task<int> GetDraftCountAsync(int userId, bool isTopic);
     }
 }

+ 1 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/Middle/MiddleService.cs

@@ -918,6 +918,7 @@ namespace GxPress.Service.Implement.Middle
                 }
             }
             List<MiddleSearchFolderResult> result = new List<MiddleSearchFolderResult>();
+            
             foreach (var item in middles)
             {
                 MiddleSearchFolderResult middleSearchFolderResult = new MiddleSearchFolderResult

+ 1 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/Note/NoteService.cs

@@ -732,6 +732,7 @@ namespace GxPress.Service.Implement.Note
             }
             result.IsDraft = await _noteRepository.IsExistsDraftAsync(request.UserId, false);
             result.DraftId = await _noteRepository.GetNoteIdByDraftAsync(request.UserId, false);
+            result.DraftCount=await _noteRepository.GetDraftCountAsync(request.UserId,false);
             return result;
         }
     }