kongdeqiang
2023-05-11 d4e6ec0389dd8abbcce4ee4f9e5cdad1633491d5
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package com.wgcloud.entity;
 
import java.util.Date;
 
/**
 * @version v3.3
 * @ClassName:HeathMonitor.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: 服务接口信息
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
public class HeathMonitor extends BaseEntity {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
 
    /**
     * 服务接口名称
     */
    private String appName;
 
    /**
     * 服务接口Url
     */
    private String heathUrl;
 
    /**
     * 状态码
     */
    private String heathStatus;
 
    /**
     * 响应时间毫秒
     */
    private Integer resTimes;
 
    /**
     * 1启用监控2停止监控
     */
    private String active;
 
    /**
     * 响应报文必须包含的关键字符
     */
    private String resKeyword;
 
    /**
     * 响应报文不能包含的关键字符,多个用英文逗号隔开
     */
    private String resNoKeyword;
 
    /**
     * 接口请求方式,GET,POST
     */
    private String method;
 
    /**
     * post接口请求参数json字符串,可为空
     */
    private String postStr;
 
    /**
     * post请求时候,header添加的键值对json字符串
     */
    private String headerJson;
 
    //header添加的键值对,页面显示用,数据库无此字段
    private String headerKey;
    private String headerValue;
    private String headerKey2;
    private String headerValue2;
    private String headerKey3;
    private String headerValue3;
    private String headerKey4;
    private String headerValue4;
    private String headerKey5;
    private String headerValue5;
 
    //累积告警次数,页面显示用,数据库无此字段
    private Integer warnCount;
 
    //累积告警次数查询关键字,页面显示用,数据库无此字段
    private String warnQueryWd;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 所属用户账号
     */
    private String account;
 
    public String getAppName() {
        return appName;
    }
 
    public void setAppName(String appName) {
        this.appName = appName;
    }
 
    public String getHeathUrl() {
        return heathUrl;
    }
 
    public void setHeathUrl(String heathUrl) {
        this.heathUrl = heathUrl;
    }
 
    public String getHeathStatus() {
        return heathStatus;
    }
 
    public void setHeathStatus(String heathStatus) {
        this.heathStatus = heathStatus;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getResTimes() {
        return resTimes;
    }
 
    public void setResTimes(Integer resTimes) {
        this.resTimes = resTimes;
    }
 
    public String getActive() {
        return active;
    }
 
    public void setActive(String active) {
        this.active = active;
    }
 
    public String getResKeyword() {
        return resKeyword;
    }
 
    public void setResKeyword(String resKeyword) {
        this.resKeyword = resKeyword;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
 
    public String getPostStr() {
        return postStr;
    }
 
    public void setPostStr(String postStr) {
        this.postStr = postStr;
    }
 
    public Integer getWarnCount() {
        return warnCount;
    }
 
    public void setWarnCount(Integer warnCount) {
        this.warnCount = warnCount;
    }
 
    public String getResNoKeyword() {
        return resNoKeyword;
    }
 
    public void setResNoKeyword(String resNoKeyword) {
        this.resNoKeyword = resNoKeyword;
    }
 
    public String getWarnQueryWd() {
        return warnQueryWd;
    }
 
    public void setWarnQueryWd(String warnQueryWd) {
        this.warnQueryWd = warnQueryWd;
    }
 
    public String getHeaderJson() {
        return headerJson;
    }
 
    public void setHeaderJson(String headerJson) {
        this.headerJson = headerJson;
    }
 
    public String getHeaderKey() {
        return headerKey;
    }
 
    public void setHeaderKey(String headerKey) {
        this.headerKey = headerKey;
    }
 
    public String getHeaderValue() {
        return headerValue;
    }
 
    public void setHeaderValue(String headerValue) {
        this.headerValue = headerValue;
    }
 
    public String getHeaderKey2() {
        return headerKey2;
    }
 
    public void setHeaderKey2(String headerKey2) {
        this.headerKey2 = headerKey2;
    }
 
    public String getHeaderValue2() {
        return headerValue2;
    }
 
    public void setHeaderValue2(String headerValue2) {
        this.headerValue2 = headerValue2;
    }
 
    public String getHeaderKey3() {
        return headerKey3;
    }
 
    public void setHeaderKey3(String headerKey3) {
        this.headerKey3 = headerKey3;
    }
 
    public String getHeaderValue3() {
        return headerValue3;
    }
 
    public void setHeaderValue3(String headerValue3) {
        this.headerValue3 = headerValue3;
    }
 
    public String getHeaderKey4() {
        return headerKey4;
    }
 
    public void setHeaderKey4(String headerKey4) {
        this.headerKey4 = headerKey4;
    }
 
    public String getHeaderValue4() {
        return headerValue4;
    }
 
    public void setHeaderValue4(String headerValue4) {
        this.headerValue4 = headerValue4;
    }
 
    public String getHeaderKey5() {
        return headerKey5;
    }
 
    public void setHeaderKey5(String headerKey5) {
        this.headerKey5 = headerKey5;
    }
 
    public String getHeaderValue5() {
        return headerValue5;
    }
 
    public void setHeaderValue5(String headerValue5) {
        this.headerValue5 = headerValue5;
    }
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
}