mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 11:49:49 +08:00
update
This commit is contained in:
@@ -207,14 +207,14 @@ public class SiChuanPlatformServiceImpl implements ThirdPartyPlatformService {
|
|||||||
public Map<String, String> queryStationsInfo(QueryStationInfoDTO dto) {
|
public Map<String, String> queryStationsInfo(QueryStationInfoDTO dto) {
|
||||||
int pageNo = dto.getPageNo() == null ? 1 : dto.getPageNo();
|
int pageNo = dto.getPageNo() == null ? 1 : dto.getPageNo();
|
||||||
int pageSize = dto.getPageSize() == null ? 50 : dto.getPageSize();
|
int pageSize = dto.getPageSize() == null ? 50 : dto.getPageSize();
|
||||||
dto.setThirdPlatformType("25");
|
dto.setThirdPlatformType(thirdPlatformType);
|
||||||
PageUtils.startPage(pageNo, pageSize);
|
PageUtils.startPage(pageNo, pageSize);
|
||||||
List<ThirdPartyStationInfoVO> stationInfos = pileStationInfoService.selectStationInfosByThirdParty(dto);
|
List<ThirdPartyStationInfoVO> stationInfos = pileStationInfoService.selectStationInfosByThirdParty(dto);
|
||||||
if (CollectionUtils.isEmpty(stationInfos)) {
|
if (CollectionUtils.isEmpty(stationInfos)) {
|
||||||
// 未查到数据
|
// 未查到数据
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
ThirdPartySecretInfoVO thirdPartySecretInfoVO = null;
|
ThirdPartySecretInfoVO thirdPartySecretInfoVO = getSiChuanSecretInfo();
|
||||||
|
|
||||||
PageInfo<ThirdPartyStationInfoVO> pageInfo = new PageInfo<>(stationInfos);
|
PageInfo<ThirdPartyStationInfoVO> pageInfo = new PageInfo<>(stationInfos);
|
||||||
List<SupStationInfoDTO> resultList = new ArrayList<>();
|
List<SupStationInfoDTO> resultList = new ArrayList<>();
|
||||||
|
|||||||
Reference in New Issue
Block a user