Ver código fonte

信创页面优化 增加字段

tags/24080901
PoffyZhang 2 meses atrás
pai
commit
a2ed9d522f
1 arquivos alterados com 5 adições e 2 exclusões
  1. +5
    -2
      hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/service/impl/XinchuangServiceImpl.java

+ 5
- 2
hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/service/impl/XinchuangServiceImpl.java Ver arquivo

@@ -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());
}
}

Carregando…
Cancelar
Salvar