List<String> ids = list.stream().map(ContractModificationBasicInfoDTO::getUuid).collect(Collectors.toList());
private CompletedBidSectionInfoDTO entityToDTO(BidProcessSection entity) {
final CompletedBidSectionInfoDTO infoDTO = new CompletedBidSectionInfoDTO();标签:CompletedBidSectionInfoDTO,null,infoDTO,entity,jdk8,集合,查询 From: https://www.cnblogs.com/dahei96/p/16710216.html
BeanUtils.copyProperties(entity, infoDTO);
infoDTO.setBidType(entity.getBidType() == null ? 0 : (int) entity.getBidType());
// 貌似字段带了 json 数据库查询会返回 null
if (StringUtils.isBlank(infoDTO.getFileInfoJson())) {
infoDTO.setFileInfoJson(entity.getBidFileInfo());
}
return infoDTO;
}