From ff55f15de19cb5bf02fa4d2313f4882ef9b3a452 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期三, 30 四月 2025 10:47:34 +0800
Subject: [PATCH] 表阀一体机上报心跳数据最小间隔经常改动,时常不通知软件开发人员,所以通信中间件根据最小上报数据间隔会切断设备网络连接,为此改变中间件配置,最小心跳间隔改为在properties文件中配置。

---
 pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/ParseParamsForDownV202404.java |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/ParseParamsForDownV202404.java b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/ParseParamsForDownV202404.java
new file mode 100644
index 0000000..deeca39
--- /dev/null
+++ b/pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/p206V202404/ParseParamsForDownV202404.java
@@ -0,0 +1,47 @@
+package com.dy.common.mw.protocol.p206V202404;
+
+import com.dy.common.mw.protocol.CodeParseParams;
+
+public class ParseParamsForDownV202404 implements CodeParseParams{
+
+	public String rtuResultSendWebUrl ;//rtu杩斿洖鍛戒护缁撴灉 鍙戝悜鐩殑鍦皐eb URL
+	public String protocolName ;
+	public Short protocolVersion ;
+	public String rtuAddr ;//鎺у埗鍣ㄥ湴鍧�
+	public String commandId ;
+	public String commandCode ;
+	public Object param ;
+	public Object attachment ;
+	
+	public ParseParamsForDownV202404(){}
+	
+	public void clear(){
+		this.protocolName = null ; 
+		this.protocolVersion = null ;
+		this.rtuAddr = null ;
+		this.commandId = null ;
+		this.commandCode = null ; 
+		this.param = null ; 
+		this.attachment = null ; 
+	}
+	
+	public void setValue(
+			String rtuResultSendWebUrl,
+			String protocolName,
+			Short protocolVersion,
+			String rtuAddr,
+			String commandId,
+			String commandCode, 
+			Object param, 
+			Object attachment ){
+		this.rtuResultSendWebUrl = rtuResultSendWebUrl ;
+		this.protocolName = protocolName ;
+		this.protocolVersion = protocolVersion ;
+		this.rtuAddr = rtuAddr ;
+		this.commandId = commandId ;
+		this.commandCode = commandCode ; 
+		this.param = param ; 
+		this.attachment = attachment ; 
+	}
+
+}

--
Gitblit v1.8.0