1111
This commit is contained in:
@@ -6,7 +6,7 @@ public interface IUnitUserAttrService
|
||||
|
||||
Task<UserAttrModel> GetUserAttrModel(string userId);
|
||||
Task<unit_user_attr> GetUserAttr(string userId);
|
||||
|
||||
Task<int> GetUserLev(string userId);
|
||||
#endregion
|
||||
|
||||
#region 体力操作
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
namespace Application.Domain;
|
||||
|
||||
public interface IUnitUserRelationService
|
||||
{
|
||||
#region 好友关系
|
||||
|
||||
Task<int> GetUserFriendCount(string userId);
|
||||
Task<List<RelationView>> GetUserFriend(string userId);
|
||||
Task<bool> CheckIsFriend(string userId, string toId);
|
||||
Task<bool> AddFriend(string userId, string toId);
|
||||
Task<bool> DeleteFriend(string userId, string toId);
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user