|
@@ -9,6 +9,8 @@ using System.Threading.Tasks;
|
|
|
using GxPress.Entity.tede2.AppChannel;
|
|
|
using GxPress.Result.AppChannel;
|
|
|
using System.Linq;
|
|
|
+using GxPress.Common.Page;
|
|
|
+using GxPress.Request.AppChannel;
|
|
|
|
|
|
namespace GxPress.Repository.Implement.AppChannel
|
|
|
{
|
|
@@ -83,5 +85,28 @@ namespace GxPress.Repository.Implement.AppChannel
|
|
|
{
|
|
|
return await _repository.UpdateAsync(request);
|
|
|
}
|
|
|
+ public async Task<bool> IsChildrenAsync(int id)
|
|
|
+ {
|
|
|
+ return await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.AppChannel.ChannelCategory.ParentId), id));
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 根据父级获取 获取频道分类
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<PagedList<ChannelCategoryResult>> GetAllByParentIdAsync(AppChannelSearchRequest request)
|
|
|
+ {
|
|
|
+ var result = new PagedList<ChannelCategoryResult>();
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ query.Where(nameof(Entity.tede2.AppChannel.ChannelCategory.ParentId), request.CategoryId);
|
|
|
+ result.Total = await _repository.CountAsync(query);
|
|
|
+ query.ForPage(request.Page, request.PerPage);
|
|
|
+ result.Items = await _repository.GetAllAsync<ChannelCategoryResult>(query);
|
|
|
+ foreach (var item in result.Items)
|
|
|
+ {
|
|
|
+ item.IsCategory = true;
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
}
|
|
|
}
|