李昊 4 years ago
parent
commit
6708c2db30

+ 9 - 2
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminAttachController.cs

@@ -47,8 +47,15 @@ namespace GxPress.Api.AdminControllers
         {
             return await repository.GetAllAsync(request);
         }
-
-
+        /// <summary>
+        /// 获取所有
+        /// </summary>
+        /// <returns></returns>
+        [HttpPost("search")]
+        public async Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request)
+        {
+            return await repository.GetSearchAllAsync(request);
+        }
         /// <summary>
         /// 获取详情
         /// </summary>

+ 15 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Attach/AttachRepository.cs

@@ -54,6 +54,21 @@ namespace GxPress.Repository.Implement.Attach
             result.Total = await _repository.CountAsync(query);
             return result;
         }
+        public async Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request)
+        {
+            var query = Q.NewQuery();
+            query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), request.TypeId);
+            if (!string.IsNullOrEmpty(request.KeyWord))
+                query.WhereLike(nameof(Entity.tede2.Attach.Attach.Name), $"%{request.KeyWord}%");
+            if (request.CategoryId > 0)
+                query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.CategoryId);
+            if (request.AdminId > 0)
+                query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.AdminId);
+            if (request.WithdrawType > 0)
+                query.Where(nameof(Entity.tede2.Attach.Attach.IsWithdraw), request.WithdrawType == 2);
+            var result = await _repository.GetAllAsync(query);
+            return result;
+        }
 
         public async Task<Entity.tede2.Attach.Attach> GetAsync(int id)
         {

+ 2 - 1
gx_api/GxPress/Repository/GxPress.Repository.Interface/Attach/IAttachRepository.cs

@@ -1,3 +1,4 @@
+using System.Collections.Generic;
 using System.Threading.Tasks;
 using Datory;
 using GxPress.Common.Page;
@@ -10,7 +11,7 @@ namespace GxPress.Repository.Interface.Attach
         Task<bool> DeleteAsync(int id);
 
         Task<PagedList<Entity.tede2.Attach.Attach>> GetAllAsync(AttachRequest request);
-
+        Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request);
         Task<Entity.tede2.Attach.Attach> GetAsync(int id);
 
         Task<int> InsertAsync(Entity.tede2.Attach.Attach note);