feiyu02
2023-11-15 45fdeee912088efbd07a748a011682c6c6d1ce51
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package com.flightfeather.monitor.domain.ds1.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "du_js_t_risk_value")
public class RiskValue {
    @Id
    private Integer id;
 
    /**
     * 监测点编号
     */
    @Column(name = "mn_code")
    private String mnCode;
 
    /**
     * 时间
     */
    @JsonFormat(shape = JsonFormat.Shape.STRING,pattern = "YYYY-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date lst;
 
    /**
     * 在线率风险值
     */
    @Column(name = "online_risk")
    private Double onlineRisk;
 
    /**
     * 有效率风险值
     */
    @Column(name = "valid_risk")
    private Double validRisk;
 
    /**
     * 超标风险值
     */
    @Column(name = "exceed_risk")
    private Double exceedRisk;
 
    /**
     * 异常类型聚集度
     */
    @Column(name = "exception_type_aggregation")
    private Double exceptionTypeAggregation;
 
    /**
     * 典型异常复现率
     */
    @Column(name = "typical_exception_repetition_rate")
    private Double typicalExceptionRepetitionRate;
 
    /**
     * 统计类型(日统计或月统计),day month
     */
    private String type;
 
    /**
     * @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 lst - 时间
     */
    public Date getLst() {
        return lst;
    }
 
    /**
     * 设置时间
     *
     * @param lst 时间
     */
    public void setLst(Date lst) {
        this.lst = lst;
    }
 
    /**
     * 获取在线率风险值
     *
     * @return online_risk - 在线率风险值
     */
    public Double getOnlineRisk() {
        return onlineRisk;
    }
 
    /**
     * 设置在线率风险值
     *
     * @param onlineRisk 在线率风险值
     */
    public void setOnlineRisk(Double onlineRisk) {
        this.onlineRisk = onlineRisk;
    }
 
    /**
     * 获取有效率风险值
     *
     * @return valid_risk - 有效率风险值
     */
    public Double getValidRisk() {
        return validRisk;
    }
 
    /**
     * 设置有效率风险值
     *
     * @param validRisk 有效率风险值
     */
    public void setValidRisk(Double validRisk) {
        this.validRisk = validRisk;
    }
 
    /**
     * 获取超标风险值
     *
     * @return exceed_risk - 超标风险值
     */
    public Double getExceedRisk() {
        return exceedRisk;
    }
 
    /**
     * 设置超标风险值
     *
     * @param exceedRisk 超标风险值
     */
    public void setExceedRisk(Double exceedRisk) {
        this.exceedRisk = exceedRisk;
    }
 
    /**
     * 获取异常类型聚集度
     *
     * @return exception_type_aggregation - 异常类型聚集度
     */
    public Double getExceptionTypeAggregation() {
        return exceptionTypeAggregation;
    }
 
    /**
     * 设置异常类型聚集度
     *
     * @param exceptionTypeAggregation 异常类型聚集度
     */
    public void setExceptionTypeAggregation(Double exceptionTypeAggregation) {
        this.exceptionTypeAggregation = exceptionTypeAggregation;
    }
 
    /**
     * 获取典型异常复现率
     *
     * @return typical_exception_repetition_rate - 典型异常复现率
     */
    public Double getTypicalExceptionRepetitionRate() {
        return typicalExceptionRepetitionRate;
    }
 
    /**
     * 设置典型异常复现率
     *
     * @param typicalExceptionRepetitionRate 典型异常复现率
     */
    public void setTypicalExceptionRepetitionRate(Double typicalExceptionRepetitionRate) {
        this.typicalExceptionRepetitionRate = typicalExceptionRepetitionRate;
    }
 
    /**
     * 获取统计类型(日统计或月统计),day month
     *
     * @return type - 统计类型(日统计或月统计),day month
     */
    public String getType() {
        return type;
    }
 
    /**
     * 设置统计类型(日统计或月统计),day month
     *
     * @param type 统计类型(日统计或月统计),day month
     */
    public void setType(String type) {
        this.type = type == null ? null : type.trim();
    }
}