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); } }