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; }