zhangnaisong
2023-06-26 3af79ca14c6790617d0a1f48aabadb97a341f17f
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
91
92
93
94
95
96
97
98
99
100
101
102
package com.ruoyi.alarm.stealAlarm.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
 
import java.util.Date;
 
 
@Data
public class ArdAlarmStealelec extends BaseEntity {
    private static final long serialVersionUID = 1L;
    /**
     * id
     */
    @Excel(name = "id")
    private String id;
    /**
     * command
     */
    @Excel(name = "command")
    private Integer command;
    /**
     * 油井代码
     */
    @Excel(name = "油井代码")
    private String name;
    /**
     * 井号
     */
    @Excel(name = "井号")
    private String describe;
 
    /**
     * 报警类型
     */
    @Excel(name = "报警类型")
    private String catalogText;
    /**
     * 报警值
     */
    @Excel(name = "报警值")
    private String description;
    /**
     * 报警开始时间
     */
    @Excel(name = "报警开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;
    /**
     * 报警结束时间
     */
    @Excel(name = "报警结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endTime;
 
    /**
     * 用户ID
     */
    @Excel(name = "用户ID")
    private String userId;
 
    /**
     * 部门ID
     */
    @Excel(name = "部门ID")
    private Long deptId;
    /**
     * 查看时间
     */
    @Excel(name = "查看时间")
    private Date viewTime;
    /**
     * 经度
     */
    @Excel(name = "经度")
    private double longitude;
    /**
     * 纬度
     */
    @Excel(name = "纬度")
    private double latitude;
    /**
     * 高层
     */
    @Excel(name = "高层")
    private double altitude;
    /**
     * 报警总数
     */
    private Integer total;
    /**
     * 未读报警数量
     */
    private Integer count;
    /**
     * 引导录像url
     */
    @Excel(name = "引导录像url")
    private String recordUrl;
}