处理机场飞行控制数据

This commit is contained in:
孙小云 2026-02-28 09:29:50 +08:00
parent 6bda88ab0c
commit f20216fc29
1 changed files with 1 additions and 6 deletions

View File

@ -91,12 +91,7 @@ public class PreCheckLogWebSocket {
continue;
}
Map<String, Object> response = new ConcurrentHashMap<>();
response.put("status", flightData.get("status"));
response.put("preCheckLogs", flightData.get("preCheckLogs"));
response.put("flightLogs", flightData.get("flightLogs"));
ws.sendMessage(JSON.toJSONString(response));
ws.sendMessage(JSON.toJSONString(flightData));
}
}
}