|
|
@@ -48,7 +48,10 @@ public class XinchuangServiceImpl extends ServiceImpl<XinchuangMapper, Xinchuang |
|
|
|
.or(q2 -> q2.isNull(Xinchuang::getStatus))); |
|
|
|
} |
|
|
|
List<Xinchuang> list = list(query); |
|
|
|
return list.stream().map(x -> BeanUtil.copyProperties(x,XcfhxApplyListVO.class)) |
|
|
|
.collect(Collectors.toList()); |
|
|
|
return list.stream().map(x -> { |
|
|
|
XcfhxApplyListVO vo = BeanUtil.copyProperties(x, XcfhxApplyListVO.class); |
|
|
|
vo.setBizName(x.getBidName()); |
|
|
|
return vo; |
|
|
|
}).collect(Collectors.toList()); |
|
|
|
} |
|
|
|
} |