2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
package com.landtool.lanbase.modules.res.entity;
 
 
public class Res_ActionRecord {
 
  private Integer actionid;
  private Integer resourceid;
  private Long userid;
  private Integer appid;
  private java.sql.Timestamp actiontime;
  private String actiontype;
  private String ip;
  private String username;
 
  private String isDiTuFuwu;
 
  
  
  
  public String getUsername() {
    return username;
}
 
public void setUsername(String username) {
    this.username = username;
}
 
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 java.sql.Timestamp getActiontime() {
    return actiontime;
  }
 
  public void setActiontime(java.sql.Timestamp 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;}
 
  public String getIsDiTuFuwu() {
    return isDiTuFuwu;
  }
 
  public void setIsDiTuFuwu(String isDiTuFuwu) {
    this.isDiTuFuwu = isDiTuFuwu;
  }
 
  private Integer actioncount;  //个应用程序调用资源总次数
 
  public Integer getActioncount() {
    return actioncount;
  }
 
  public void setActioncount(Integer actioncount) {
    this.actioncount = actioncount;
  }
 
  private String resourcename;
 
  public String getResourcename() {
    return resourcename;
  }
 
  public void setResourcename(String resourcename) {
    this.resourcename = resourcename;
  }
}