dengzedong
2024-11-06 db184afd0c5bf3359b44eb0251fa5b07386eb3ff
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
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;
}