| | |
| | | package org.sxkj.fw.record.excel; |
| | | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 反无设备ID(关联ja_fw_device.id) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("反无设备ID(关联ja_fw_device.id)") |
| | | private Long deviceId; |
| | | /** |
| | | * 无人机名称 |
| | | */ |
| | | @ExcelIgnore |
| | | private Long id; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("无人机名称") |
| | | private String droneName; |
| | | /** |
| | | * 序列号 |
| | | */ |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("序列号") |
| | | private String serialNo; |
| | | /** |
| | | * 首次告警时间 |
| | | */ |
| | | |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("首次告警时间") |
| | | // private Date alarmTime; |
| | | // |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("触发原因") |
| | | // private String triggerType; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("首次告警时间") |
| | | private Date alarmTime; |
| | | /** |
| | | * 触发原因/类型 |
| | | */ |
| | | @ExcelProperty("停留时长") |
| | | private String stayDuration; |
| | | |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("区域名称") |
| | | // private String areaName; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("触发原因/类型") |
| | | private String triggerType; |
| | | /** |
| | | * 停留时长(HH:MM:SS) |
| | | */ |
| | | @ExcelProperty("经度") |
| | | private Double longitude; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("停留时长(HH:MM:SS)") |
| | | private LocalTime stayDuration; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ExcelProperty("纬度") |
| | | private Double latitude; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | @ExcelProperty("时间") |
| | | private Date pointTime; |
| | | |
| | | |
| | | |
| | | } |