using System.Threading.Tasks; namespace GxPress.Service.Interface.Visit { public interface IVisitService : IService { /// /// /// 添加/数据条数 /// /// /// 类型ID 类型1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情 /// /// Task AddVisit(int userId, int typeId, int sourceId); /// /// 获取访问数量 /// /// /// /// Task GetCountAsync(int typeId, int sourceId); } }