From ae44f9f6e0dff88cf5f7b0e29d31428e6ab35a3e Mon Sep 17 00:00:00 2001 From: "YAS\\29473" <2947326429@qq.com> Date: Mon, 29 Sep 2025 10:03:32 +0800 Subject: [PATCH] update --- .../platform/service/impl/XinDiantuPlatfromServiceImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/XinDiantuPlatfromServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/XinDiantuPlatfromServiceImpl.java index 215d23972..871f6c811 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/XinDiantuPlatfromServiceImpl.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/XinDiantuPlatfromServiceImpl.java @@ -176,6 +176,8 @@ public class XinDiantuPlatfromServiceImpl implements ThirdPartyPlatformService { dto.setThirdPlatformType(thirdPlatformType); PageUtils.startPage(pageNo, pageSize); List stationInfos = pileStationInfoService.selectStationInfosByThirdParty(dto); + log.info("queryStationsInfo: stationInfos={}", stationInfos); + if (CollectionUtils.isEmpty(stationInfos)) { // 未查到数据 return null; @@ -235,6 +237,7 @@ public class XinDiantuPlatfromServiceImpl implements ThirdPartyPlatformService { map.put("PageNo", pageInfo.getPageNum()); map.put("StationInfos", resultList); Map resultMap = ThirdPartyPlatformUtils.generateResultMap(map, thirdPartySecretInfoVO); + log.info("返回参数:{}", JSON.toJSONString(resultMap)); return resultMap; }