| | |
| | | package org.sxkj.fw.detection.excel; |
| | | |
| | | |
| | | import lombok.Data; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | |
| | |
| | | * 设备配置表 Excel实体类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 设备ID(tz_device_deploy.id) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("设备ID(tz_device_deploy.id)") |
| | | private Long deviceId; |
| | | /** |
| | | * 配置版本号 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("配置版本号") |
| | | private Integer configVersion; |
| | | /** |
| | | * 是否最新 1最新 0历史 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("是否最新 1最新 0历史") |
| | | private Byte isLatest; |
| | | /** |
| | | * 全部参数(JSON) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("全部参数(JSON)") |
| | | private String configJson; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | |
| | | } |