package com.iailab.module.data.channel.modbus.vo;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.iailab.module.data.channel.tag.vo.TagExportExcelVO;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年08月22日
|
*/
|
@Schema(description = "导出 - ModBusTag信息")
|
@Data
|
public class ModBusTagExportExcelVO extends TagExportExcelVO {
|
|
@Schema(description = "地址")
|
@ExcelProperty(value = "地址",index = 3)
|
private String address;
|
|
@Schema(description = "大小端")
|
@ExcelProperty(value = "大小端",index = 4)
|
private String format;
|
|
@Schema(description = "采集频率")
|
@ExcelProperty(value = "采集频率",index = 5)
|
private Integer samplingRate;
|
}
|