| | |
| | | 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.util.Date; |
| | | |
| | | |
| | | /** |
| | | * 无人机飞行记录详情表 Excel实体类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 飞行记录表ID |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("飞行记录表ID") |
| | | private Long flightRecordId; |
| | | /** |
| | | * 经度 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("经度") |
| | | private Double longitude; |
| | | /** |
| | | * 纬度 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("纬度") |
| | | private Double latitude; |
| | | /** |
| | | * 点位时间 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("点位时间") |
| | | private Date pointTime; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | |
| | | } |