package com.landtool.lanbase.modules.log.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author lanbase
|
* @Description: TODO(系统模块操作日志表)
|
* @date 2018-01-16 09:18:41
|
*/
|
public class LogAction implements Serializable {
|
|
// 操作ID
|
private Long actionid;
|
// 系统用户ID
|
private Long userid;
|
// 应用程序ID
|
private Long appid;
|
// 操作时间
|
private Date dodate;
|
// 所属大模块名称
|
private String largemodel;
|
// 具体模块名称
|
private String smallmodel;
|
// 请求网址
|
private String requesturl;
|
// 请求客户端IP地址
|
private String requestip;
|
// 操作说明
|
private String remark;
|
// 操作类型
|
private String actiontype;
|
|
private String appfullname;
|
|
private String loginname;
|
|
private String chinesename;
|
|
private Integer resourceid;
|
|
private String title;
|
|
public String getAppfullname() {
|
return appfullname;
|
}
|
|
public void setAppfullname(String appfullname) {
|
this.appfullname = appfullname;
|
}
|
|
public String getLoginname() {
|
return loginname;
|
}
|
|
public void setLoginname(String loginname) {
|
this.loginname = loginname;
|
}
|
|
/**
|
* 设置:操作ID
|
*/
|
public void setActionid(Long actionid) {
|
this.actionid = actionid;
|
}
|
|
/**
|
* 获取:操作ID
|
*/
|
public Long getActionid() {
|
return actionid;
|
}
|
|
/**
|
* 设置:系统用户ID
|
*/
|
public void setUserid(Long userid) {
|
this.userid = userid;
|
}
|
|
/**
|
* 获取:系统用户ID
|
*/
|
public Long getUserid() {
|
return userid;
|
}
|
|
/**
|
* 设置:应用程序ID
|
*/
|
public void setAppid(Long appid) {
|
this.appid = appid;
|
}
|
|
/**
|
* 获取:应用程序ID
|
*/
|
public Long getAppid() {
|
return appid;
|
}
|
|
/**
|
* 设置:操作时间
|
*/
|
public void setDodate(Date dodate) {
|
this.dodate = dodate;
|
}
|
|
/**
|
* 获取:操作时间
|
*/
|
public Date getDodate() {
|
return dodate;
|
}
|
|
/**
|
* 设置:所属大模块名称
|
*/
|
public void setLargemodel(String largemodel) {
|
this.largemodel = largemodel;
|
}
|
|
/**
|
* 获取:所属大模块名称
|
*/
|
public String getLargemodel() {
|
return largemodel;
|
}
|
|
/**
|
* 设置:具体模块名称
|
*/
|
public void setSmallmodel(String smallmodel) {
|
this.smallmodel = smallmodel;
|
}
|
|
/**
|
* 获取:具体模块名称
|
*/
|
public String getSmallmodel() {
|
return smallmodel;
|
}
|
|
/**
|
* 设置:请求网址
|
*/
|
public void setRequesturl(String requesturl) {
|
this.requesturl = requesturl;
|
}
|
|
/**
|
* 获取:请求网址
|
*/
|
public String getRequesturl() {
|
return requesturl;
|
}
|
|
/**
|
* 设置:请求客户端IP地址
|
*/
|
public void setRequestip(String requestip) {
|
this.requestip = requestip;
|
}
|
|
/**
|
* 获取:请求客户端IP地址
|
*/
|
public String getRequestip() {
|
return requestip;
|
}
|
|
/**
|
* 设置:操作说明
|
*/
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
/**
|
* 获取:操作说明
|
*/
|
public String getRemark() {
|
return remark;
|
}
|
|
public String getChinesename() {
|
return chinesename;
|
}
|
|
public void setChinesename(String chinesename) {
|
this.chinesename = chinesename;
|
}
|
|
/**
|
* 获取:操作类型
|
*/
|
public String getActiontype() {
|
return actiontype;
|
}
|
|
/**
|
* 设置:操作类型
|
*/
|
public void setActiontype(String actiontype) {
|
this.actiontype = actiontype;
|
}
|
|
public Integer getResourceid() {
|
return resourceid;
|
}
|
|
public void setResourceid(Integer resourceid) {
|
this.resourceid = resourceid;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
}
|