mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 05:55:03 +08:00
update 第三方平台推送方法 由通过站点id查询配置密钥改为通过对应第三方平台类型查询
This commit is contained in:
@@ -71,11 +71,10 @@ public interface XDTService {
|
||||
|
||||
/**
|
||||
* 设备状态变化推送
|
||||
* @param pileConnectorCode
|
||||
* @param status
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
String notificationStationStatus(String pileConnectorCode, String status);
|
||||
String notificationStationStatus(PushRealTimeInfoDTO dto);
|
||||
|
||||
/**
|
||||
* 推送充电订单信息
|
||||
|
||||
@@ -131,13 +131,12 @@ public class XDTServiceImpl implements XDTService {
|
||||
|
||||
/**
|
||||
* 设备状态变化推送
|
||||
* @param pileConnectorCode
|
||||
* @param status
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public String notificationStationStatus(String pileConnectorCode, String status) {
|
||||
return zdlService.notificationStationStatus(pileConnectorCode, status);
|
||||
public String notificationStationStatus(PushRealTimeInfoDTO dto) {
|
||||
return zdlService.notificationStationStatus(dto);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user