From 123ed266760b75e0ffb89e24b3cec57d564419a4 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期五, 07 二月 2025 09:36:22 +0800 Subject: [PATCH] 大屏展示模块:当前信息统计优化,监测信息统计实现。 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoCurrentInfo.java | 29 ++++++++++++++++------------- 1 files changed, 16 insertions(+), 13 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..7677923 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,11 +10,14 @@ */ @Data -@JsonPropertyOrder({"totalCountOfOnLine", - "totalCountOfOffLine", - "totalCountOfOpenValve", - "totalCountOfCloseValve", - "totalCountOfUnknownValve" +@JsonPropertyOrder({"cTotalCountOfOnLine", + "cTotalCountOfOffLine", + "cTotalCountOfOpenValve", + "cTotalCountOfCloseValve", + "cTotalCountOfUnknownValve", + "cTotalCountOfAlarm", + "cTotalCountOfNoAlarm", + "cTotalCountOfUnknownAlarm" }) public class VoCurrentInfo { @@ -23,36 +26,36 @@ /** * 鍦ㄧ嚎鎬绘暟 */ - public Integer totalCountOfOnLine ; + public Integer cTotalCountOfOnLine; /** * 绂荤嚎鎬绘暟 */ - public Integer totalCountOfOffLine ; + public Integer cTotalCountOfOffLine; /** * 闃�寮�鎬绘暟 */ - public Integer totalCountOfOpenValve ; + public Integer cTotalCountOfOpenValve; /** * 闃�鍏虫�绘暟 */ - public Integer totalCountOfCloseValve ; + public Integer cTotalCountOfCloseValve; /** * 鏈煡闃�闂ㄧ姸鎬佹�绘暟 */ - public Integer totalCountOfUnknownValve ; + public Integer cTotalCountOfUnknownValve; /** * 鎶ヨ鎬绘暟 */ - public Integer totalCountOfAlarm ; + public Integer cTotalCountOfAlarm; /** * 鏃犳姤璀︽�绘暟 */ - public Integer totalCountOfNoAlarm ; + public Integer cTotalCountOfNoAlarm; /** * 鏈煡鎶ヨ鐘舵�佹�绘暟 */ - public Integer totalCountOfUnknownAlarm ; + public Integer cTotalCountOfUnknownAlarm; } -- Gitblit v1.8.0