| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package com.ruoyi.data.domain.vo;
- import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.ruoyi.common.annotation.ExcelDictFormat;
- import com.ruoyi.common.convert.ExcelDictConvert;
- import lombok.Data;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * 点位数据视图对象 tbl_datapoint
- *
- * @author ruoyi
- * @date 2023-12-05
- */
- @Data
- @ExcelIgnoreUnannotated
- public class TblDatapointVo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @ExcelProperty(value = "")
- private Long id;
- /**
- * 名称
- */
- @ExcelProperty(value = "名称")
- private String name;
- /**
- * 设备id
- */
- @ExcelProperty(value = "设备id")
- private Long sensorId;
- /**
- * 数据类型
- */
- @ExcelProperty(value = "数据类型")
- private Long dataType;
- /**
- * 从设备号
- */
- @ExcelProperty(value = "从设备号")
- private String slaveDeviceNumber;
- /**
- * 起始地址
- */
- @ExcelProperty(value = "起始地址")
- private Long addr;
- /**
- * 起始地址偏移量
- */
- @ExcelProperty(value = "起始地址偏移量")
- private Long addrOffset;
- /**
- * 待读寄存器的个数
- */
- @ExcelProperty(value = "待读寄存器的个数")
- private Long len;
- /**
- * 变量类型
- */
- @ExcelProperty(value = "变量类型")
- private String valueType;
- /**
- * 备注
- */
- @ExcelProperty(value = "备注")
- private String remark;
- private String unitName;
- private String unitType;
- private int toOffset;
- }
|