wl
2023-01-04 aeea62d121a1a8fd4475da30f1ef8b44b4776c7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.ycl.vo.cockpit.enforcementEvents;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "事件")
public class EventVO {
 
    @ApiModelProperty(value = "事件经度")
    private String longitude;
    @ApiModelProperty(value = "事件纬度")
    private String latitude;
    @ApiModelProperty(value = "事件类型")
    private String type;
    @ApiModelProperty(value = "告警设备")
    private String alarmAdvice;
    @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;
}