1
13693261870
2022-09-16 fee60c3e25fac0982f3b8cb8feea7225c4ed22f8
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
package com.terra.proxy.bean;
 
import java.io.Serializable;
import java.util.Date;
 
public class ResActionRecord implements Serializable {
 
    private Integer actionid;
 
    private Integer resourceid;
 
    private Long userid;
 
    private Integer appid;
 
    private Date actiontime;
 
    private String actiontype;
 
    private String ip;
 
    private String token;
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    private String requesturl;
 
    public String getRequesturl() {
        return requesturl;
    }
 
    public void setRequesturl(String requesturl) {
        this.requesturl = requesturl;
    }
 
    public Integer getActionid() {
        return actionid;
    }
 
    public void setActionid(Integer actionid) {
        this.actionid = actionid;
    }
 
    public Integer getResourceid() {
        return resourceid;
    }
 
    public void setResourceid(Integer resourceid) {
        this.resourceid = resourceid;
    }
 
    public Long getUserid() {
        return userid;
    }
 
    public void setUserid(Long userid) {
        this.userid = userid;
    }
 
    public Integer getAppid() {
        return appid;
    }
 
    public void setAppid(Integer appid) {
        this.appid = appid;
    }
 
    public Date getActiontime() {
        return actiontime;
    }
 
    public void setActiontime(Date actiontime) {
        this.actiontime = actiontime;
    }
 
    public String getActiontype() {
        return actiontype;
    }
 
    public void setActiontype(String actiontype) {
        this.actiontype = actiontype;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
}