Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
03e8ac 1 package com.iailab.module.data.channel.modbus.vo;
J 2
3 import com.alibaba.excel.annotation.ExcelProperty;
4 import com.iailab.module.data.channel.tag.vo.TagExportExcelVO;
5 import io.swagger.v3.oas.annotations.media.Schema;
6 import lombok.Data;
7
8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2024年08月22日
12  */
13 @Schema(description = "导出 - ModBusTag信息")
14 @Data
15 public class ModBusTagExportExcelVO extends TagExportExcelVO {
16
17     @Schema(description = "地址")
18     @ExcelProperty(value = "地址",index = 3)
19     private String address;
20
21     @Schema(description = "大小端")
22     @ExcelProperty(value = "大小端",index = 4)
23     private String format;
24
25     @Schema(description = "采集频率")
26     @ExcelProperty(value = "采集频率",index = 5)
27     private Integer samplingRate;
28 }