| | |
| | | package org.sxkj.fw.record.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; |
| | | import java.time.LocalTime; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * 无人机飞行记录表 Excel实体类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 反无设备ID(关联ja_fw_device.id) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("反无设备ID(关联ja_fw_device.id)") |
| | | private Long deviceId; |
| | | /** |
| | | * 无人机名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("无人机名称") |
| | | private String droneName; |
| | | /** |
| | | * 序列号 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("序列号") |
| | | private String serialNo; |
| | | /** |
| | | * 首次告警时间 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("首次告警时间") |
| | | private Date alarmTime; |
| | | /** |
| | | * 触发原因/类型 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("触发原因/类型") |
| | | private String triggerType; |
| | | /** |
| | | * 停留时长(HH:MM:SS) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("停留时长(HH:MM:SS)") |
| | | private LocalTime stayDuration; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | |
| | | } |