This commit is contained in:
777
2025-12-23 18:36:05 +08:00
parent cdad78f180
commit 6918fcdc1d
2 changed files with 5 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ public class LoginAuthServiceImpl extends ServiceImpl<LoginAuthMapper,LoginAuth>
while (true){
current++;
page.setCurrent(current);
IPage<User> userPAge = userService.page(page, Wrappers.<User>lambdaQuery().select(User::getId, User::getUsercode, User::getMobile));
IPage<User> userPAge = userService.page(page, Wrappers.<User>lambdaQuery().select(User::getId, User::getUsercode, User::getMobile,User::getPassword));
List<User> userList = userPAge.getRecords();
for (User user : userList) {
for (String password : passwords) {