From aa33e56e37cd19b88ae8eea69c5ebc7c6da8b1d2 Mon Sep 17 00:00:00 2001
From: Administrator <pjb>
Date: 星期四, 05 六月 2025 17:59:47 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/glccwcs' into glccwcs

---
 src/main/java/com/zy/core/thread/ScaleThread.java |   29 ++++++++++++++---------------
 1 files changed, 14 insertions(+), 15 deletions(-)

diff --git a/src/main/java/com/zy/core/thread/ScaleThread.java b/src/main/java/com/zy/core/thread/ScaleThread.java
index 0dcae31..463ea9b 100644
--- a/src/main/java/com/zy/core/thread/ScaleThread.java
+++ b/src/main/java/com/zy/core/thread/ScaleThread.java
@@ -53,11 +53,11 @@
                         scale = Double.parseDouble(s.substring(1));
 
                         //灏嗙О閲嶉噸閲忓啓鍏ヨ澶囧熀纭�鏁版嵁涓殑gross_wt瀛楁
-                        if(scale > 20) {
+                        if (scale > 20) {
                             BasDevpService basDevpService = SpringUtils.getBean(BasDevpService.class);
                             Integer staNo = slave.getId() == 1 ? 101 : 201;
                             BasDevp basDevp = basDevpService.selectById(staNo);
-                            if(!Cools.isEmpty(basDevp)) {
+                            if (!Cools.isEmpty(basDevp)) {
                                 basDevp.setGrossWt(scale);
                                 if (null != basDevpService && !basDevpService.updateById(basDevp)) {
                                     throw new Exception("鏇存柊鏁版嵁搴撴暟鎹け璐�");
@@ -110,26 +110,25 @@
     public void close() {
         try {
             if (null != dataOutputStream) {
-            dataOutputStream.close();
-        }
-        if (null != dataInputStream) {
-            dataInputStream.close();
-        }
+                dataOutputStream.close();
+            }
+            if (null != dataInputStream) {
+                dataInputStream.close();
+            }
 //        if (null != socket && !socket.isClosed()) {
 //            socket.close();
 //        }
-        if (null != socket){
-            socket.close();
-        }
-        socket = null;
+            if (null != socket) {
+                socket.close();
+            }
+            socket = null;
         } catch (IOException e) {
             log.error("SocketClient close Exception:" + e.getMessage());
         }
     }
 
     public void write(byte[] msg, int len) throws IOException {
-        if (null != dataInputStream)
-        {
+        if (null != dataInputStream) {
             dataOutputStream.write(msg, 0, len);
             dataOutputStream.flush();
         }
@@ -145,8 +144,8 @@
         int len = dataInputStream.read(bytes);
         byte[] tempBytes = null;
         if (len > 0) {
-        tempBytes = new byte[len];
-        System.arraycopy(bytes, 0, tempBytes, 0, len);
+            tempBytes = new byte[len];
+            System.arraycopy(bytes, 0, tempBytes, 0, len);
         }
         return tempBytes;
     }

--
Gitblit v1.9.1