From d2ab6f7153e604bac7bc4ad58f27f368b65d8a1e Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期二, 16 六月 2026 13:54:58 +0800
Subject: [PATCH] feat: 添加能耗数据综合分析功能,支持按天和周维度的趋势分析
---
src/main/java/com/ruoyi/http/vo/StatisticEleRecordVo.java | 67 +++++++++++++++++++++++++++++++++
1 files changed, 67 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/http/vo/StatisticEleRecordVo.java b/src/main/java/com/ruoyi/http/vo/StatisticEleRecordVo.java
new file mode 100644
index 0000000..933529d
--- /dev/null
+++ b/src/main/java/com/ruoyi/http/vo/StatisticEleRecordVo.java
@@ -0,0 +1,67 @@
+package com.ruoyi.http.vo;
+
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import lombok.Data;
+
+/**
+ * 鐢佃〃缁熻鏁版嵁璁板綍
+ */
+@Data
+public class StatisticEleRecordVo {
+
+ private Long id;
+
+ @Excel(name = "鏃堕棿鏍囪瘑")
+ private String timeKey;
+
+ @Excel(name = "鐢佃〃ID")
+ private Long meterId;
+
+ @Excel(name = "鐢佃〃鍚嶇О")
+ private String meterName;
+
+ @Excel(name = "琛ㄥ湴鍧�")
+ private String address;
+
+ @Excel(name = "鍊嶇巼")
+ private Integer ratio;
+
+ @Excel(name = "涓婃鐢甸噺")
+ private Double prevReading;
+
+ @Excel(name = "鏈鐢甸噺")
+ private Double currReading;
+
+ @Excel(name = "鏈鐢ㄧ數閲�(kWh)")
+ private Double totalConsumption;
+
+ @Excel(name = "鎶勮〃鏂瑰紡")
+ private String readingMethod;
+
+ @Excel(name = "寮�濮嬫椂闂�")
+ private String startTime;
+
+ @Excel(name = "缁撴潫鏃堕棿")
+ private String endTime;
+
+ @Excel(name = "灏栧嘲(kWh)")
+ private Double sharpConsumption;
+
+ @Excel(name = "宄�(kWh)")
+ private Double peakConsumption;
+
+ @Excel(name = "骞�(kWh)")
+ private Double flatConsumption;
+
+ @Excel(name = "璋�(kWh)")
+ private Double valleyConsumption;
+
+ @Excel(name = "璧峰璇绘暟")
+ private String startReading;
+
+ @Excel(name = "缁撴潫璇绘暟")
+ private String endReading;
+
+ /** 鍏煎瀛楁锛岄〉闈笉灞曠ず */
+ private String collectorNo;
+}
--
Gitblit v1.9.3