| package com.ruoyi.alarm.radar.domain; | 
|   | 
| import java.util.Date; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import lombok.Data; | 
| import com.ruoyi.common.annotation.Excel; | 
| import com.ruoyi.common.core.domain.BaseEntity; | 
|   | 
| /** | 
|  * 雷达报警对象 ard_alarm_radar | 
|  * | 
|  * @author ard | 
|  * @date 2023-06-28 | 
|  */ | 
| @Data | 
| public class ArdAlarmRadar extends BaseEntity | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** 用户ID */ | 
|     @Excel(name = "用户ID") | 
|     private String userId; | 
|   | 
|     /** 部门ID */ | 
|     @Excel(name = "部门ID") | 
|     private Integer deptId; | 
|   | 
|     /** 记录ID */ | 
|     private String id; | 
|   | 
|     /** 兴趣点名称 */ | 
|     @Excel(name = "兴趣点名称") | 
|     private String name; | 
|   | 
|     /** 目标ID */ | 
|     @Excel(name = "目标ID") | 
|     private String targetId; | 
|   | 
|     /** 报警类型 */ | 
|     @Excel(name = "报警类型") | 
|     private String alarmType; | 
|   | 
|     /** 报警时间 */ | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|     @Excel(name = "报警时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") | 
|     private Date alarmTime; | 
|   | 
|     /** 经度 */ | 
|     @Excel(name = "经度") | 
|     private Double longitude; | 
|   | 
|     /** 纬度 */ | 
|     @Excel(name = "纬度") | 
|     private Double latitude; | 
|   | 
|     /** 查看时间 */ | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|     @Excel(name = "查看时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") | 
|     private Date viewTime; | 
|     /** | 
|      * 雷达ID | 
|      */ | 
|     private String RadarId; | 
|     /** | 
|      * 井号 | 
|      */ | 
|     private String wellId; | 
|   | 
|     /** | 
|      * 报警总数 | 
|      */ | 
|     private Integer total; | 
|     /** | 
|      * 未读报警数量 | 
|      */ | 
|     private Integer count; | 
|     /** | 
|      * 引导标记 | 
|      */ | 
|     private  Integer guideFlag; | 
|     /** | 
|      * 录像url1 | 
|      */ | 
|     private  String recordUrl1; | 
|     /** | 
|      * 录像url2 | 
|      */ | 
|     private  String recordUrl2; | 
|     /** 引导时间 */ | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|     @Excel(name = "引导时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") | 
|     private Date guideTime; | 
| } |