This commit is contained in:
YAS\29473
2025-09-29 10:03:32 +08:00
parent 31fd742a73
commit ae44f9f6e0

View File

@@ -176,6 +176,8 @@ public class XinDiantuPlatfromServiceImpl implements ThirdPartyPlatformService {
dto.setThirdPlatformType(thirdPlatformType);
PageUtils.startPage(pageNo, pageSize);
List<ThirdPartyStationInfoVO> 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<String, String> resultMap = ThirdPartyPlatformUtils.generateResultMap(map, thirdPartySecretInfoVO);
log.info("返回参数:{}", JSON.toJSONString(resultMap));
return resultMap;
}