1.List<DTO>排序方法1
//组装pair数据
List<CardChannelInfoDTO> clientInfoDto = cardChannelInfoClientDTOLists;
//排序正序
clientInfoDto.forEach(clientInfo -> clientInfo.setPortNumber(clientInfo.getPortNumber()));
clientInfoDto.sort(Comparator.comparingInt(CardChannelInfoDTO::getPortNumber));
//反序
clientInfoDto.forEach(clientInfo -> clientInfo.setPortNumber(<