feiyu02
2024-04-25 0392c333ed3d987cb2ab3dac4e1a972cff405f21
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package cn.flightfeather.supervision.domain.ds3.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "abnormal_data")
public class FumeExceptionData {
    /**
     * 序号
     */
    @Id
    private Integer id;
 
    /**
     * 设备编号
     */
    @Column(name = "dev_id")
    private String devId;
 
    private String exception;
 
    /**
     * 异常类型
     */
    @Column(name = "exception_type")
    private String exceptionType;
 
    /**
     * 地区
     */
    private String region;
 
    /**
     * 开始时间
     */
    @Column(name = "begin_time")
    private Date beginTime;
 
    /**
     * 结束
     */
    @Column(name = "end_time")
    private Date endTime;
 
    /**
     * 获取序号
     *
     * @return id - 序号
     */
    public Integer getId() {
        return id;
    }
 
    /**
     * 设置序号
     *
     * @param id 序号
     */
    public void setId(Integer id) {
        this.id = id;
    }
 
    /**
     * 获取设备编号
     *
     * @return dev_id - 设备编号
     */
    public String getDevId() {
        return devId;
    }
 
    /**
     * 设置设备编号
     *
     * @param devId 设备编号
     */
    public void setDevId(String devId) {
        this.devId = devId == null ? null : devId.trim();
    }
 
    /**
     * @return exception
     */
    public String getException() {
        return exception;
    }
 
    /**
     * @param exception
     */
    public void setException(String exception) {
        this.exception = exception == null ? null : exception.trim();
    }
 
    /**
     * 获取异常类型
     *
     * @return exception_type - 异常类型
     */
    public String getExceptionType() {
        return exceptionType;
    }
 
    /**
     * 设置异常类型
     *
     * @param exceptionType 异常类型
     */
    public void setExceptionType(String exceptionType) {
        this.exceptionType = exceptionType == null ? null : exceptionType.trim();
    }
 
    /**
     * 获取地区
     *
     * @return region - 地区
     */
    public String getRegion() {
        return region;
    }
 
    /**
     * 设置地区
     *
     * @param region 地区
     */
    public void setRegion(String region) {
        this.region = region == null ? null : region.trim();
    }
 
    /**
     * 获取开始时间
     *
     * @return begin_time - 开始时间
     */
    public Date getBeginTime() {
        return beginTime;
    }
 
    /**
     * 设置开始时间
     *
     * @param beginTime 开始时间
     */
    public void setBeginTime(Date beginTime) {
        this.beginTime = beginTime;
    }
 
    /**
     * 获取结束
     *
     * @return end_time - 结束
     */
    public Date getEndTime() {
        return endTime;
    }
 
    /**
     * 设置结束
     *
     * @param endTime 结束
     */
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
}