李昊 4 years ago
parent
commit
d1bb8fbd2f

+ 4 - 4
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminAppChannelController.cs

@@ -11,7 +11,7 @@ using Microsoft.AspNetCore.Mvc;
 namespace GxPress.Api.AdminControllers
 {
     /// <summary>
-    /// 文章组
+    /// APP频道
     /// </summary>
     [Route("api/admin/app-channel")]
     [ApiController]
@@ -91,10 +91,10 @@ namespace GxPress.Api.AdminControllers
         /// 查询导航分类
         /// </summary>
         /// <returns></returns>
-        [HttpGet("channel-category/list/{channelTypeValye}")]
-        public async Task<IEnumerable<ChannelCategoryResult>> ChannelCategoryGetAllAsync(int channelTypeValye)
+        [HttpGet("channel-category/list/{appChannelId}")]
+        public async Task<IEnumerable<ChannelCategoryResult>> ChannelCategoryGetAllAsync(int appChannelId)
         {
-            return await channelCategoryRepository.GetAllAsync((AppChannelConst)channelTypeValye);
+            return await channelCategoryRepository.GetAllAsync(appChannelId);
         }
         /// <summary>
         /// 删除导航分类

+ 2 - 2
gx_api/GxPress/Model/GxPress.Entity/tede2/AppChannel/ChannelCategory.cs

@@ -33,10 +33,10 @@ namespace GxPress.Entity.tede2.AppChannel
         [DataColumn]
         public int Sort { get; set; }
         /// <summary>
-        /// 类型 公众号  视频 期刊杂志 图书
+        /// 导航ID
         /// </summary>
         /// <value></value>
         [DataColumn]
-        public GxPress.EnumConst.AppChannelConst ChannelTypeValye { get; set; }
+        public int AppChannelId { get; set; }
     }
 }

+ 2 - 2
gx_api/GxPress/Repository/GxPress.Repository.Implement/AppChannel/ChannelCategoryRepository.cs

@@ -42,11 +42,11 @@ namespace GxPress.Repository.Implement.AppChannel
         /// 查询 获取MediaId
         /// </summary>
         /// <returns></returns>
-        public async Task<IEnumerable<ChannelCategoryResult>> GetAllAsync(AppChannelConst channelTypeValye)
+        public async Task<IEnumerable<ChannelCategoryResult>> GetAllAsync(int appChannelId)
         {
             var result = new List<ChannelCategoryResult>();
             var query = Q.NewQuery();
-            query.Where(nameof(Entity.tede2.AppChannel.ChannelCategory.ChannelTypeValye), channelTypeValye);
+            query.Where(nameof(Entity.tede2.AppChannel.ChannelCategory.AppChannelId), appChannelId);
             var items = await _repository.GetAllAsync<ChannelCategoryResult>(query);
             result.AddRange(items.Where(n => n.ParentId == 0));
             foreach (var item in result)

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Interface/AppChannel/IChannelCategoryRepository.cs

@@ -19,7 +19,7 @@ namespace GxPress.Repository.Interface.AppChannel
         /// 查询 获取MediaId
         /// </summary>
         /// <returns></returns>
-        Task<IEnumerable<ChannelCategoryResult>> GetAllAsync(AppChannelConst channelTypeValye);
+        Task<IEnumerable<ChannelCategoryResult>> GetAllAsync(int appChannelId);
         /// <summary>
         /// 删除
         /// </summary>