李昊 4 years ago
parent
commit
29be771ae4

+ 2 - 2
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminCategoryController.cs

@@ -37,9 +37,9 @@ namespace GxPress.Api.AdminControllers
         /// <param name="id"></param>
         /// <returns></returns>
         [HttpGet("{id}")]
-        public async Task<Entity.tede2.Category.Category> GetAsync(int id)
+        public async Task<CategoryResult> GetAsync(int id)
         {
-            return await categoryRepository.GetAsync(id);
+            return await categoryService.GetAsync(id);
         }
         /// <summary>
         /// 删除

+ 5 - 0
gx_api/GxPress/Model/GxPress.Result/Category/ CategoryResult.cs

@@ -49,5 +49,10 @@ namespace GxPress.Result.Category
         /// </summary>
         /// <value></value>
         public List<int> MediaIds { get; set; }
+         /// <summary>
+        /// 类型0 pc 1 app
+        /// </summary>
+        /// <value></value>
+        public int TypeValue { get; set; }
     }
 }

+ 2 - 2
gx_api/GxPress/Repository/GxPress.Repository.Implement/Category/CategoryRepository.cs

@@ -45,9 +45,9 @@ namespace GxPress.Repository.Implement.Category
             return await _repository.GetAllAsync(Q.Where(nameof(Entity.tede2.Category.Category.TypeValue), typeValue));
         }
 
-        public async Task<Entity.tede2.Category.Category> GetAsync(int id)
+        public async Task<CategoryResult> GetAsync(int id)
         {
-            return await _repository.GetAsync(id);
+            return await _repository.GetAsync<CategoryResult>(Q.Where(nameof(Entity.tede2.Category.Category.Id),id));
         }
 
         public async Task<IEnumerable<CategoryResult>> GetCategoryChildrenAsync(int parentId, int typeValue)

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Interface/Category/CategoryRepository.cs

@@ -11,7 +11,7 @@ namespace GxPress.Repository.Interface.Category
     /// </summary>
     public interface ICategoryRepository : IRepository
     {
-        Task<Entity.tede2.Category.Category> GetAsync(int id);
+        Task<CategoryResult> GetAsync(int id);
 
         Task<bool> DeleteAsync(int id);
 

+ 8 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/Category/CategoryService.cs

@@ -47,5 +47,13 @@ namespace GxPress.Service.Implement.Category
             }
             return result;
         }
+
+        public async Task<CategoryResult> GetAsync(int id)
+        {
+            var result = await categoryRepository.GetAsync(id);
+            var mediaIds = await systemLableMediaRepository.GetMediaIdsAsync(id, result.TypeValue == 0 ? 0 : 1);
+            result.MediaIds = mediaIds.ToList();
+            return result;
+        }
     }
 }

+ 1 - 0
gx_api/GxPress/Service/GxPress.Service.Interface/Category/ICategoryService.cs

@@ -13,5 +13,6 @@ namespace GxPress.Service.Interface.Category
         /// <returns></returns>
         Task<IEnumerable<CategoryResult>> GetCategoryAllAsync(int typeValue = 0);
         Task<IEnumerable<CategoryResult>> GetCategoryChildrenAsync(int parentId, int typeValue);
+        Task<CategoryResult> GetAsync(int id);
     }
 }