| | |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | | import lombok.Data; |
| | | import org.sxkj.fw.utils.excel.LocalTimeConverter; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("经纬度面(存储地理面数据)") |
| | | private byte[] geom; |
| | | private String geom; |
| | | /** |
| | | * 区域类型:报警区/重点管制区 |
| | | */ |
| | |
| | | * 可飞行时间段-开始 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("可飞行时间段-开始") |
| | | @ExcelProperty(value = "可飞行时间段-开始", converter = LocalTimeConverter.class) |
| | | private LocalTime flyTimeStart; |
| | | /** |
| | | * 可飞行时间段-结束 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("可飞行时间段-结束") |
| | | @ExcelProperty(value = "可飞行时间段-结束", converter = LocalTimeConverter.class) |
| | | private LocalTime flyTimeEnd; |
| | | /** |
| | | * 可飞行日期-开始 |