修改:

1.新增检查登录爬大哥客户端登录接口
This commit is contained in:
2025-06-25 18:17:23 +08:00
parent aada30a000
commit 6819b6c1d4
6 changed files with 55 additions and 5 deletions

View File

@@ -69,4 +69,12 @@ public class SystemUsersServiceImpl extends ServiceImpl<SystemUsersMapper,System
SystemUsers systemUsers = baseMapper.selectById(userId);
return systemUsers.getCrawl() == 1;
}
@Override
public boolean checkbigBrotherlRole(Long userId) {
SystemUsers systemUsers = baseMapper.selectById(userId);
return systemUsers.getBigBrother() == 1;
}
}