首页 > 其他分享 >jdk8集合查询

jdk8集合查询

时间:2022-09-20 10:44:48浏览次数:76  
标签:CompletedBidSectionInfoDTO null infoDTO entity jdk8 集合 查询

List<String> ids =  list.stream().map(ContractModificationBasicInfoDTO::getUuid).collect(Collectors.toList());



private CompletedBidSectionInfoDTO entityToDTO(BidProcessSection entity) {
  final CompletedBidSectionInfoDTO infoDTO = new CompletedBidSectionInfoDTO();
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;
}

标签:CompletedBidSectionInfoDTO,null,infoDTO,entity,jdk8,集合,查询
From: https://www.cnblogs.com/dahei96/p/16710216.html

相关文章