feiyu02
2023-10-19 27d341342925f11c19fb7a31da7050f5e9041319
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
package com.flightfeather.monitor.domain.ds1.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "dust_exception_data")
public class DustExceptionData {
    @Id
    private Integer id;
 
    @Column(name = "mn_code")
    private String mnCode;
 
    private String exception;
 
    @Column(name = "exception_type")
    private Integer exceptionType;
 
    private String region;
 
    @Column(name = "begin_time")
    private Date beginTime;
 
    @Column(name = "end_time")
    private Date endTime;
 
    @Column(name = "avg_value")
    private Double avgValue;
 
    /**
     * @return id
     */
    public Integer getId() {
        return id;
    }
 
    /**
     * @param id
     */
    public void setId(Integer id) {
        this.id = id;
    }
 
    /**
     * @return mn_code
     */
    public String getMnCode() {
        return mnCode;
    }
 
    /**
     * @param mnCode
     */
    public void setMnCode(String mnCode) {
        this.mnCode = mnCode == null ? null : mnCode.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 Integer getExceptionType() {
        return exceptionType;
    }
 
    /**
     * @param exceptionType
     */
    public void setExceptionType(Integer exceptionType) {
        this.exceptionType = exceptionType;
    }
 
    /**
     * @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;
    }
 
    /**
     * @return avg_value
     */
    public Double getAvgValue() {
        return avgValue;
    }
 
    /**
     * @param avgValue
     */
    public void setAvgValue(Double avgValue) {
        this.avgValue = avgValue;
    }
}