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
package com.zhitan.dataitem.domain.vo;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @Author DYL
 **/
@Data
public class NodeIndexValueVO {
 
    /**
     * 节点id
     */
    private String nodeId;
 
    /**
     * 节点名称
     */
    private String nodeName;
 
    /**
     * 点位id
     */
    private String indexId;
 
    /**
     * 累积量
     */
    private BigDecimal value;
}