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;
|
}
|
}
|