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