| package com.doumee.dao.web.response.platformReport; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * 本年消防设备/设施维护情况 | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/10/25 14:26 | 
|  */ | 
| @Data | 
| public class AlarmEventDataVO { | 
|   | 
|   | 
|     @ApiModelProperty(value = "报警源详细地址") | 
|     private String location; | 
|     @ApiModelProperty(value = "报警源名称") | 
|     private String alarmName; | 
|     @ApiModelProperty(value = "区域名称") | 
|     private String regionName; | 
|     @ApiModelProperty(value = "区域编码") | 
|     private String regionIndexCode; | 
|     @ApiModelProperty(value = "报警时间 时间格式yyyy-MM-dd HH:mm:ss") | 
|     private String alarmTime; | 
|     @ApiModelProperty(value = "报警源资源名称") | 
|     private String resourceName; | 
|     @ApiModelProperty(value = "报警状态") | 
|     private Integer handleStatus; | 
|     @ApiModelProperty(value = "报警类型名称") | 
|     private String alarmTypeName; | 
|   | 
|   | 
|   | 
|   | 
| } |