admin
2021-09-24 881f273bca0f94345efb2c0cac52279af4a7f4e4
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
package org.yeshi.utils.statistic.http;
 
import java.util.Date;
import java.util.Map;
 
/**
 * http请求信息
 * 
 * @author Administrator
 *
 */
public class HttpRequestInfo {
    private String url;
    private String method;
    private String protocal;
    private int stateCode;
    private int time;
    private Map<String, Object> params;
    private Date date;
    private String ip;
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public Date getDate() {
        return date;
    }
 
    public void setDate(Date date) {
        this.date = date;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
 
    public String getProtocal() {
        return protocal;
    }
 
    public void setProtocal(String protocal) {
        this.protocal = protocal;
    }
 
    public int getStateCode() {
        return stateCode;
    }
 
    public void setStateCode(int stateCode) {
        this.stateCode = stateCode;
    }
 
    public int getTime() {
        return time;
    }
 
    public void setTime(int time) {
        this.time = time;
    }
 
    public Map<String, Object> getParams() {
        return params;
    }
 
    public void setParams(Map<String, Object> params) {
        this.params = params;
    }
 
}