From 57a28b40495ca1ca2be71f17327853efdd22335f Mon Sep 17 00:00:00 2001 From: xiang Date: Tue, 16 Dec 2025 22:38:54 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=8B=89=E5=8F=96jt=E5=9C=BA?= =?UTF-8?q?=E5=9C=B0=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../application/script/jntyzx/service/VenueServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/src/main/java/com/xiang/xservice/application/script/jntyzx/service/VenueServiceImpl.java b/script/src/main/java/com/xiang/xservice/application/script/jntyzx/service/VenueServiceImpl.java index b381d27..10a9b5c 100644 --- a/script/src/main/java/com/xiang/xservice/application/script/jntyzx/service/VenueServiceImpl.java +++ b/script/src/main/java/com/xiang/xservice/application/script/jntyzx/service/VenueServiceImpl.java @@ -72,7 +72,8 @@ public class VenueServiceImpl implements IVenueService { Map map = Maps.newHashMap(); if (CollectionUtils.isNotEmpty(venueInfoDOS)) { - map.putAll(venueInfoDOS.stream().filter(Objects::nonNull).collect(Collectors.toMap(VenueInfoDO::getPlaceMainId, Function.identity(), (a, b) -> a))); + map.putAll(venueInfoDOS.stream().filter(Objects::nonNull) + .collect(Collectors.toMap(item -> Long.parseLong(String.valueOf(item.getPlaceId())), Function.identity(), (a, b) -> a))); } List insertList = Lists.newArrayList(); for (SitePositionList sitePositionList : list) {