yuan
3 天以前 1a21433e0babfa7cafc5a4d86609442ec9f150a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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;
}