DYL
2025-02-10 816e856344d34b73a13d7db4055de2c66e7cd534
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
package com.zhitan.energyMonitor.domain.vo;
 
import lombok.Data;
 
/**
 * @Description: TODO
 * @author: yxw
 * @date: 2022年04月24日 16:59
 */
@Data
public class ListElectricLoadItem {
    /**
     * 电表名称
     */
    private String name;
    /**
     * 时间
     */
    private String timeCode;
    /**
     * 统计图显示时间
     */
    private String timeCodeChart;
    /**
     * 最大负荷
     */
    private String max;
    /**
     * 最小负荷
     */
    private String min;
    /**
     * 平均负荷
     */
    private String avg;
    /**
     * 实时值
     */
    private String value;
    /**
     * 负荷率
     */
    private String rate;
}