From 7385687086168ea4a9c1172cabe30efa9f8dfb78 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期二, 25 三月 2025 09:19:33 +0800
Subject: [PATCH] 修改83功能码上行数据解析,增加数据容量,及检查IC卡编号与地址的合规性

---
 pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/largeScreen/WebSocketServer.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/largeScreen/WebSocketServer.java b/pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/largeScreen/WebSocketServer.java
index fd66ef4..1f2d1c9 100644
--- a/pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/largeScreen/WebSocketServer.java
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/largeScreen/WebSocketServer.java
@@ -103,7 +103,7 @@
     /**
      * 鏈嶅姟鍣ㄤ富鍔ㄧ兢鎺ㄩ�佹秷鎭�
      */
-    public static void sendAllMessage(String message) throws IOException {
+    public static void sendMessage2AllClient(String message) throws IOException {
         ConcurrentHashMap.KeySetView<String, WebSocketServer> ids = webSocketMap.keySet();
         for (String id : ids) {
             WebSocketServer webSocketServer = webSocketMap.get(id);
@@ -114,7 +114,7 @@
     /**
      * 鏈嶅姟鍣ㄦ寚瀹氬鎴风鎺ㄩ�佹秷鎭�
      */
-    public static void sendOneMessage(String message, String id) throws IOException {
+    public static void sendMessage2OneClient(String message, String id) throws IOException {
         if (message != null && message.length() != 0 && webSocketMap.containsKey(id)) {
             webSocketMap.get(id).sendMessage(message);
         } else {

--
Gitblit v1.8.0