| | |
| | | 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; |
| | | |
| | | @ExcelIgnore |
| | | private Long id; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("无人机名称") |
| | | private String droneName; |
| | |
| | | @ExcelProperty("序列号") |
| | | private String serialNo; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("首次告警时间") |
| | | private Date alarmTime; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("触发原因/类型") |
| | | private String triggerType; |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("首次告警时间") |
| | | // private Date alarmTime; |
| | | // |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("触发原因") |
| | | // private String triggerType; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("停留时长") |
| | | private String stayDuration; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域名称") |
| | | private String areaName; |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("区域名称") |
| | | // private String areaName; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("经度") |