using System.Collections.Generic; using System.Threading.Tasks; using Datory; namespace GxPress.Repository.Interface.Friends { public interface IFriendsRepository : IRepository { /// /// 添加 /// /// /// Task AddAsync(Entity.Friends model); /// /// 删除我的好友 /// /// /// /// Task DeleteAsync(IEnumerable friendsIds, int userId); /// /// 获取好友数据 /// /// /// /// Task> GetFriendsIdsAsync(int userId, int addressBookGroupId); /// /// 好友移动到自己分组 /// /// /// /// /// Task UpdateAddressBookGroupId(IEnumerable friendsUserId, int userId, int addressBookGroupId); /// /// 是否是好友 /// /// /// /// Task ExistsAsync(int friendsUserId, int userId); } }