| | |
| | | package org.sxkj.fw.record.excel; |
| | | |
| | | |
| | | import lombok.Data; |
| | | |
| | | 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; |
| | | 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; |
| | | |
| | | @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 String stayDuration; |
| | | |
| | | // @ColumnWidth(20) |
| | | // @ExcelProperty("区域名称") |
| | | // private String areaName; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("经度") |
| | | private Double longitude; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("纬度") |
| | | private Double latitude; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("时间") |
| | | private Date pointTime; |
| | | |
| | | |
| | | |
| | | } |