mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-19 06:39:50 +08:00
中电联接口
This commit is contained in:
@@ -34,4 +34,31 @@ public interface ZDLService {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
Map<String, String> queryStationStats(QueryStationInfoDTO dto);
|
Map<String, String> queryStationStats(QueryStationInfoDTO dto);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备接口状态查询
|
||||||
|
* 此接口用于批量查询设备实时状态
|
||||||
|
*
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Map<String, String> queryStationStatus(QueryStationInfoDTO dto);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备状态变化推送
|
||||||
|
* @param pileConnectorCode
|
||||||
|
* @param status
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
String notificationStationStatus(String pileConnectorCode, String status);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 推送充电订单信息
|
||||||
|
* @param orderCode
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
String pushChargeOrderInfo(String orderCode);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -157,6 +157,39 @@ public class ZDLServiceImpl implements ZDLService {
|
|||||||
return lianLianService.query_station_stats(dto);
|
return lianLianService.query_station_stats(dto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备接口状态查询
|
||||||
|
* 此接口用于批量查询设备实时状态
|
||||||
|
*
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Map<String, String> queryStationStatus(QueryStationInfoDTO dto) {
|
||||||
|
return lianLianService.query_station_status(dto);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备状态变化推送
|
||||||
|
* @param pileConnectorCode
|
||||||
|
* @param status
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String notificationStationStatus(String pileConnectorCode, String status) {
|
||||||
|
return lianLianService.pushConnectorStatus(pileConnectorCode, status);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 推送充电订单信息
|
||||||
|
* @param orderCode
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String pushChargeOrderInfo(String orderCode) {
|
||||||
|
return lianLianService.pushChargeOrderInfo(orderCode);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取桩列表信息
|
* 获取桩列表信息
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user