net
2025-02-14 06d3d15a5a08637041cc601101c063b11b07a346
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 ElectricThreePhaseItem {
    /**
     * 电表名称
     */
    private String name;
    /**
     * 时间
     */
    private String timeCode;
    /**
     * 统计图显示时间
     */
    private String timeCodeChart;
    /**
     * 最大三相不平衡
     */
    private String max;
    /**
     * 最小三相不平衡
     */
    private String min;
    /**
     * A相电流/电压
     */
    private String valueA;
    /**
     * D相电流/电压
     */
    private String valueB;
    /**
     * C相电流/电压
     */
    private String valueC;
}