diff --git a/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java b/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java index 829e4ba..9af698d 100644 --- a/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java +++ b/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java @@ -129,6 +129,6 @@ public class CallReportDealTask { if (CollectionUtils.isEmpty(customerList)) { return null; } - return customerList.stream().map(Customer::getId).toArray(value -> new Long[0]); + return customerList.stream().map(Customer::getId).toArray(Long[]::new); } }