| | |
| | | @TableField("device_id") |
| | | @ApiModelProperty(value = "反无设备ID(关联ja_fw_device.id)") |
| | | private Long deviceId; |
| | | |
| | | @TableField("area_divide_id") |
| | | @ApiModelProperty(value = "区域id ja_fw_area_divide") |
| | | private Long areaDivideId; |
| | | /** |
| | | * 无人机名称 |
| | | */ |
| | |
| | | @ApiModelProperty(value = "触发原因/类型") |
| | | private String triggerType; |
| | | /** |
| | | * 停留时长(HH:MM:SS) |
| | | * 停留时长(秒) |
| | | */ |
| | | @TableField("stay_duration") |
| | | @ApiModelProperty(value = "停留时长(HH:MM:SS)") |
| | | private LocalTime stayDuration; |
| | | @ApiModelProperty(value = "停留时长(秒)") |
| | | private String stayDuration; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | |
| | | @ApiModelProperty(value = "区域编码") |
| | | private String areaCode; |
| | | |
| | | /** |
| | | * 区域名称 |
| | | */ |
| | | @TableField("area_name") |
| | | @ApiModelProperty(value = "区域名称") |
| | | private String areaName; |
| | | } |