List<GameDTO> gameList=new ArrayList<>();
//把实体里面的gameId单独抽取出来
List<String> gameIdList = gameList.stream().map(e -> e.getGameId()).collect(Collectors.toList());

最后可以转为Set去使用里面的contains等方法,根据业务需求来就好,自由发挥。