| | |
| | | package com.ycl.vo.casePool; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | * 所属街道 |
| | | */ |
| | | @ApiModelProperty(value = "所属街道") |
| | | private Integer streetId; |
| | | private String street; |
| | | |
| | | /** |
| | | * 报警时间 |
| | | */ |
| | | @ApiModelProperty(value = "报警时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime alarmTime; |
| | | |
| | | |
| | |
| | | */ |
| | | @ApiModelProperty(value = "持续时间") |
| | | private String continueTime; |
| | | |
| | | /** |
| | | * 关闭时间 |
| | | */ |
| | | @ApiModelProperty(value = "关闭时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime closeTime; |
| | | } |