using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Request.App.Analyze; using GxPress.Request.Reply; using GxPress.Result.Reply; namespace GxPress.Service.Interface.Praise { public interface IPraiseService : IService { Task PraiseAsync(AnalyzeRequest request); /// /// 获取点赞我的列表 /// /// /// /// Task> GetPraisesAsync(ReplyRequest request); /// /// 获取点赞我的阅读数量 /// /// /// Task GetPraiseUReadCountAsync(int userId); /// /// 修改点赞我的的阅读 /// /// /// Task UpdatePraiseUReadCountAsync(int userId); } }