using System.Threading.Tasks; using GxPress.Common.Page; using GxPress.Request.App.Collection; using GxPress.Result.App.Collection; namespace GxPress.Service.Interface.Collection { public interface ICollectionService : IService { Task Insert(CollectionInRequest request); Task> PageListAsync(CollectionPageSearchRequest request); /// /// 获取收藏详情 /// /// /// Task GetCollectionDetailAsync(int id); /// /// 收藏无文件夹分页列表 /// /// /// Task> GetCollectionNoFolderPageListAsync(CollectionPageSearchRequest request); Task UpdateResultJosnAsync(); } }