update 后管枪口列表只有充电时才查询实时数据

This commit is contained in:
Lemon
2023-09-26 11:39:57 +08:00
parent 7897dd6876
commit c41d8e00d0
5 changed files with 40 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
package com.jsowell.thirdparty.nanrui.service;
/**
* 南瑞Service
*
* @author Lemon
* @Date 2023/9/26 9:17
*/
public interface NRService {
public String notification_stationInfo(String stationId);
}

View File

@@ -0,0 +1,18 @@
package com.jsowell.thirdparty.nanrui.service.impl;
import com.jsowell.thirdparty.nanrui.service.NRService;
/**
* TODO
*
* @author Lemon
* @Date 2023/9/26 9:20
*/
public class NRServiceImpl implements NRService {
@Override
public String notification_stationInfo(String stationId) {
return null;
}
}