List<Integer>转换为List<string>
List<String> stringList = intList.stream().map(String::valueOf).collect(Collectors.toList());
List<String>转换为List<Integer>
List<Integer> codesInteger = codes.stream().map(Integer::parseInt).collect(Collectors.toList());