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() { } }