From 24f53bb77f9ac80feb2e62e8ee670be4aa5f3c6e Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期四, 13 二月 2025 11:56:42 +0800
Subject: [PATCH] 1、远程模块remote模块实现: (1、系统启动时向通信中间件注册消息接收者; (2、消息接收者ctr实现(测试阶段); 2、在配置文件增加配置Springboot RestTemplate网络请求超时时长; 3、其他一些测试与优化。
---
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoCurrentInfo.java | 45 ++++++++++++++++++++++++---------------------
1 files changed, 24 insertions(+), 21 deletions(-)
diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoCurrentInfo.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoCurrentInfo.java
index a76175a..f2f3776 100644
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoCurrentInfo.java
+++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoCurrentInfo.java
@@ -10,49 +10,52 @@
*/
@Data
-@JsonPropertyOrder({"totalCountOfOnLine",
- "totalCountOfOffLine",
- "totalCountOfOpenValve",
- "totalCountOfCloseValve",
- "totalCountOfUnknownValve"
+@JsonPropertyOrder({"cTotalCountOfOnLine",
+ "cTotalCountOfOffLine",
+ "cTotalCountOfOpenValve",
+ "cTotalCountOfCloseValve",
+ "cTotalCountOfUnknownValve",
+ "cTotalCountOfAlarm",
+ "cTotalCountOfNoAlarm",
+ "cTotalCountOfUnknownAlarm"
})
public class VoCurrentInfo {
private static final long serialVersionUID = 202502061348001L;
/**
- * 鍦ㄧ嚎鎬绘暟
+ * 鍦ㄧ嚎鍙栨按鍙f�绘暟
*/
- public Integer totalCountOfOnLine ;
+ public Integer cTotalCountOfOnLine;
/**
- * 绂荤嚎鎬绘暟
+ * 绂荤嚎鍙栨按鍙f�绘暟
*/
- public Integer totalCountOfOffLine ;
+ public Integer cTotalCountOfOffLine;
/**
- * 闃�寮�鎬绘暟
+ * 闃�寮�鍙栨按鍙f�绘暟
*/
- public Integer totalCountOfOpenValve ;
+ public Integer cTotalCountOfOpenValve;
/**
- * 闃�鍏虫�绘暟
+ * 闃�鍏冲彇姘村彛鎬绘暟
*/
- public Integer totalCountOfCloseValve ;
+ public Integer cTotalCountOfCloseValve;
/**
- * 鏈煡闃�闂ㄧ姸鎬佹�绘暟
+ * 鏈煡闃�闂ㄧ姸鎬佸彇姘村彛鎬绘暟
*/
- public Integer totalCountOfUnknownValve ;
+ public Integer cTotalCountOfUnknownValve;
/**
- * 鎶ヨ鎬绘暟
+ * 鎶ヨ鍙栨按鍙f�绘暟
*/
- public Integer totalCountOfAlarm ;
+ public Integer cTotalCountOfAlarm;
/**
- * 鏃犳姤璀︽�绘暟
+ * 鏃犳姤璀﹀彇姘村彛鎬绘暟
*/
- public Integer totalCountOfNoAlarm ;
+ public Integer cTotalCountOfNoAlarm;
/**
- * 鏈煡鎶ヨ鐘舵�佹�绘暟
+ * 鏈煡鎶ヨ鐘舵�佸彇姘村彛鎬绘暟
*/
- public Integer totalCountOfUnknownAlarm ;
+ public Integer cTotalCountOfUnknownAlarm;
}
--
Gitblit v1.8.0