liding
2025-04-30 fbde0b947b4641081b558302ea77d88c902c4cd1
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
package com.ruoyi.device.pojo;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class NA7672LValueVO {
    /*类别,获取类型:1为衰减;2为阻抗;3为驻波比;4为相位差*/
    private int fetchType;
    /*通道*/
    Integer channel;
    /*轨迹线*/
    Integer trace;
    /*markId*/
    Integer mark;
    /*标签*/
    String label;
    /*原始标签*/
    String labelOrg;
    /*整数值*/
    Integer intVal;
    /*浮点值*/
    BigDecimal decimalVal;
    /*测量值*/
    BigDecimal measureValue;
    /*其他值*/
    BigDecimal calculateValue;
    /*单位*/
    String unit;
    /*是否合法,1为合法,0为不合法*/
    int ifLegal = 1;
 
    public NA7672LValueVO(int fetchType, Integer channel, Integer trace, Integer mark, String label, String labelOrg, Integer intVal, BigDecimal decimalVal, BigDecimal measureValue, BigDecimal calculateValue, String unit, int ifLegal) {
        this.fetchType = fetchType;
        this.channel = channel;
        this.trace = trace;
        this.mark = mark;
        this.label = label;
        this.labelOrg = labelOrg;
        this.intVal = intVal;
        this.decimalVal = decimalVal;
        this.measureValue = measureValue;
        this.calculateValue = calculateValue;
        this.unit = unit;
        this.ifLegal = ifLegal;
    }
 
    public NA7672LValueVO() {
        
    }
}