zoujiajian 2 anni fa
parent
commit
1cad1c6a1b

+ 1 - 1
netflix-web/src/main/java/com/cyksj/web/controller/manage/corp/CorpCustomerAcquistionLinkController.java

@@ -188,7 +188,7 @@ public class CorpCustomerAcquistionLinkController {
         Map<Long, List<SysCorpFollowView>> serviceMap = corpFollowServiceDtos.stream().collect(Collectors.groupingBy(SysCorpFollowView::getSid));
         search.getDataList().forEach(e->{
             Optional.ofNullable(serviceMap.get(e.getServiceId()))
-                    .ifPresent(service -> e.setServiceName(service.get(0).getName()));
+                    .ifPresent(service -> e.setServiceName(service.get(0).getShowName()));
         });
         return GatewayResponse.SUCCESS.newBuilder().toResult(search);
     }