|
@@ -453,8 +453,13 @@ public class ImUserFriendServiceImpl extends ServiceImpl<ImUserFriendDao, ImUser
|
|
|
* @param clientType 用户类型,处理同账号多角色问题
|
|
|
*/
|
|
|
@Override
|
|
|
- public void delFriendByTenantId(Long tenantId, Long userId, String clientType) {
|
|
|
- this.baseMapper.delFriendByTenantId(tenantId, userId, clientType);
|
|
|
+ public void delTeacherFriendByTenantId(Long tenantId, Long userId, String clientType) {
|
|
|
+ this.baseMapper.delTeacherFriendByTenantId(tenantId, userId, clientType);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void delStudentFriendByTenantId(Long tenantId, Long userId, String clientType) {
|
|
|
+ this.baseMapper.delStudentFriendByTenantId(tenantId, userId, clientType);
|
|
|
}
|
|
|
}
|
|
|
|