| | |
| | | @ExcelProperty("区域名称") |
| | | private String areaName; |
| | | |
| | | |
| | | /** |
| | | * 无人机类型(微型机/植保机...) |
| | | */ |
| | | @ColumnWidth(20) |
| | | // @ExcelProperty(value = "设备类型", converter = ExcelDictConverter.class) |
| | | @ExcelProperty(value = "设备类型") |
| | | // @ExcelDictItemLabel(type = "droneType") |
| | | // @ExcelDictItem(type = "droneType") |
| | | private String droneType; |
| | | |
| | | |
| | | /** |
| | | * 触发原因 |
| | | */ |
| | |
| | | @ExcelProperty("触发原因") |
| | | private String triggerReason; |
| | | |
| | | /** |
| | | * 停留时长 (秒) |
| | | */ |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty(value = "停留时长(秒)") |
| | | private String stayDuration; |
| | | @ExcelProperty("侦测反制设备") |
| | | private String deviceName; |
| | | |
| | | /** |
| | | * 当前经度 |
| | | * 无人机类型(微型机/植保机...) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("当前经度") |
| | | private Double longitude; |
| | | /** |
| | | * 当前纬度 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("当前纬度") |
| | | private Double latitude; |
| | | @ExcelProperty(value = "设备类型") |
| | | private String droneType; |
| | | |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("设备编号") |
| | | private String deviceSn; |
| | | |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty(value = "设备状态", converter = ExcelDictConverter.class) |
| | | @ExcelDictItemLabel(type = "deviceStatus") |
| | | @ExcelDictItem(type = "deviceStatus") |
| | | private String deviceStatus; |
| | | |
| | | |
| | | } |