From b549747e89a9275d160b58038f66a49f7b3683af Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期一, 20 一月 2025 15:19:51 +0800
Subject: [PATCH] 通信中间件Rtu日志大小配置增加10倍

---
 pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/upgrade/UpgradeRtuDev.java |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/upgrade/UpgradeRtuDev.java b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/upgrade/UpgradeRtuDev.java
index 8e02203..6b12947 100644
--- a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/upgrade/UpgradeRtuDev.java
+++ b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/upgrade/UpgradeRtuDev.java
@@ -39,6 +39,7 @@
         this.currentPackage = 0 ;
         this.currentRamAddr = 0 ;
         this.lastDownDt = "" ;
+        this.lastDownDtAt = 0L ;
         this.reTryTimes = 0 ;
         this.isOver = false ;
     }
@@ -53,6 +54,7 @@
         this.currentPackage = 0 ;
         this.currentRamAddr = 0 ;
         this.lastDownDt = "" ;
+        this.lastDownDtAt = 0L ;
         this.reTryTimes = 0 ;
         this.isOver = false ;
     }
@@ -76,6 +78,7 @@
                 if(code.equals(UpgradeCode.cd_9601)){
                     //涓嬪彂閰嶇疆杩斿洖
                     this.lastDownDt = DateTime.yyyy_MM_dd_HH_mm_ss() ;
+                    this.lastDownDtAt = System.currentTimeMillis() ;
                     callbackCom.call(createCommand1602(protocolName, protocolVersion, currentPackage, currentRamAddr, softData));//涓嬪彂鏁版嵁鍖呮寚浠�
                 }else if(code.equals(UpgradeCode.cd_9602)){
                     //涓嬪彂鏁版嵁鍖呰繑鍥�
@@ -83,9 +86,11 @@
                     currentRamAddr += RAMADDRADD ;
                     if(currentPackage < totalPackage){
                         this.lastDownDt = DateTime.yyyy_MM_dd_HH_mm_ss() ;
+                        this.lastDownDtAt = System.currentTimeMillis() ;
                         callbackCom.call(createCommand1602(protocolName, protocolVersion, currentPackage, currentRamAddr, softData));
                     }else{
                         this.lastDownDt = DateTime.yyyy_MM_dd_HH_mm_ss() ;
+                        this.lastDownDtAt = System.currentTimeMillis() ;
                         callbackCom.call(createCommand1603(protocolName, protocolVersion));//涓嬪彂鏍¢獙鎸囦护
                     }
                 }else if(code.equals(UpgradeCode.cd_9603)){
@@ -141,6 +146,7 @@
         this.currentRamAddr = 0 ;
         this.isOver = false ;
         this.lastDownDt = DateTime.yyyy_MM_dd_HH_mm_ss() ;
+        this.lastDownDtAt = System.currentTimeMillis() ;
     }
 
     /**
@@ -150,6 +156,7 @@
         this.isOver = true ;//鍗囩骇瀹屾垚
         this.state = STATE_SUCCESS ;
         this.lastDownDt = DateTime.yyyy_MM_dd_HH_mm_ss() ;
+        this.lastDownDtAt = System.currentTimeMillis() ;
     }
 
     @Override

--
Gitblit v1.8.0