#
Junjie
2025-12-19 82f1ade06cfc0f5913654227eac807a5d6a7b5bd
src/main/java/com/zy/core/network/real/ZyStationRealConnect.java
@@ -73,7 +73,7 @@
    }
    @Override
    public List<ZyStationStatusEntity> getStatus() {
    public List<ZyStationStatusEntity> getStatus(Integer deviceNo) {
        if (statusList == null) {
            BasDevpService basDevpService = SpringUtils.getBean(BasDevpService.class);
            if (basDevpService == null) {
@@ -132,7 +132,7 @@
    }
    @Override
    public CommandResponse sendCommand(StationCommand command) {
    public CommandResponse sendCommand(Integer deviceNo, StationCommand command) {
        CommandResponse commandResponse = new CommandResponse(false);
        if (null == command) {
            commandResponse.setMessage("命令为空");
@@ -204,4 +204,4 @@
        }
        return -1;
    }
}
}