liding
2025-04-23 bc1b3ee367f7e9aef88fc59647a9631f39eca6b5
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
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;
 
 
}