| | |
| | | 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 = "事发地点") |