修改了工单bug
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 6m27s
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 6m27s
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user