aijinhui
2023-12-14 0306d5836a7a56614e01af35b9e70f0224b47cb2
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.ruoyi.alarm.radar.domain;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.alarm.global.domain.GuidePTZ;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 雷达移动报警对象 ard_alarm_radar_move
 * 
 * @author ard
 * @date 2023-09-02
 */
@Data
public class ArdAlarmRadarMove extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 记录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;
 
    /** 引导录像 */
    @Excel(name = "引导录像")
    private String recordUrl;
 
    /** 查看时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "查看时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date viewTime;
 
    /** 用户ID */
    @Excel(name = "用户ID")
    private String userId;
 
    /** 部门ID */
    @Excel(name = "部门ID")
    private Long deptId;
 
    /** 引导时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "引导时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date guideTime;
 
    /**
     * 报警总数
     */
    private Integer total;
    /**
     * 未读报警数量
     */
    private Integer count;
    /**
     * 雷达ID
     */
    private String RadarId;
 
 
    /** 引导PTZ值 */
    private GuidePTZ guidePTZ;
 
}