| | |
| | | @ApiModelProperty(value = "AI识别的事件总数") |
| | | private Integer identification; |
| | | @ApiModelProperty(value = "具体事件的数据信息") |
| | | private EnforcementEventsVO.EventVO event; |
| | | private List<EventVO> event; |
| | | } |
| | | |
| | | @Data |
| | | @ApiModel(description = "具体事件的数据信息") |
| | | public static class EventVO { |
| | | @ApiModelProperty(value = "事件描述") |
| | | private String description; |
| | | @ApiModelProperty(value = "事发地点") |
| | | private String address; |
| | | @ApiModelProperty(value = "发生时间") |
| | | private String alarmTime; |
| | | @ApiModelProperty(value = "关联摄像点位") |
| | | private String point; |
| | | @ApiModelProperty(value = "监控画面") |
| | | private String picture; |
| | | @ApiModelProperty(value = "来源") |
| | | private String source; |
| | | } |
| | | |
| | | |
| | | } |