From 836ec39fdad422b1a148699a4c5fb8c5b4d395f0 Mon Sep 17 00:00:00 2001
From: zuoxiao <lf_zuo@163.com>
Date: 星期三, 25 六月 2025 11:04:33 +0800
Subject: [PATCH] feat(card): 添加管理类型卡写卡功能并优化卡片相关逻辑- 在 OperateTypeENUM 中添加 SUPPLEMENT 和 MANAGEMENT_CARD_WRITE 枚举值 - 在 SeManagementCard 中添加 cancelTime 和 state 字段 - 更新相关 mapper 和 XML 文件以支持新增字段 - 修改 CardSv 中的回调处理逻辑,支持管理类型卡写卡 - 优化 CreateManagementCardDto 中识别码的示例值
---
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