修改了工单bug
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 6m27s

This commit is contained in:
2025-08-21 14:11:51 +08:00
parent 0385bef3f4
commit db9b1e1cd3
14 changed files with 225 additions and 62 deletions

View File

@@ -490,5 +490,14 @@ public class RemoteUserServiceImpl implements RemoteUserService {
return hashMap;
}
@Override
public List<RemoteUserVo> selectUserList(List<Long> userIds) {
List<SysUser> list = userMapper.selectList(
new LambdaQueryWrapper<SysUser>()
.select()
.in(CollUtil.isNotEmpty(userIds),SysUser::getUserId, userIds)
).stream()
.collect(Collectors.toList());
return BeanUtil.copyToList(list, RemoteUserVo.class);
}
}