src/main/java/com/xcong/excoin/modules/okxNewPrice/OkxQuantWebSocketClient.java
@@ -295,6 +295,15 @@ * @param response 包含价格数据的 JSON 对象 */ private void processPushData(JSONObject response) { String op = response.getString("op"); if (op != null){ if (TradeOrderWs.ORDERWS_CHANNEL.equals(op)) { // 直接使用Object类型接收,避免强制类型转换 Object data = response.get("data"); log.info("收到下单推送结果: {}", JSON.toJSONString(data)); return; } } JSONObject arg = response.getJSONObject("arg"); if (arg == null) { log.warn("无效的推送数据,缺少 'arg' 字段 :{}",response);