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