This commit is contained in:
2024-01-23 15:12:07 +08:00
parent e4c91d54e7
commit 33fbc33c88
8 changed files with 549 additions and 63 deletions

View File

@@ -94,7 +94,19 @@ public interface PileStationInfoService {
PileStationVO getStationInfo(String stationId);
PileStationVO getStationInfoByPileSn(String pileSn);
/**
* 通过充电桩枪口编号查询充电站信息
* @param pileConnectorCode 充电桩枪口编号
* @return 充电站信息
*/
PileStationVO getStationInfoByPileConnectorCode(String pileConnectorCode);
/**
* 通过充电桩sn查询充电站信息
* @param pileSn 充电桩sn
* @return 充电站信息
*/
PileStationVO getStationInfoByPileSn(String pileSn);
List<ThirdPartyStationInfoVO> getStationInfosByThirdParty(QueryStationInfoDTO dto);