package com.vci.server.log.objects;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
public class Log implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -2896915397284485099L;
|
|
private String id;//ID
|
private String username;//操作用户名称
|
private String roleName;//操作用户模块所属角色
|
private String userIp;//操作用户IP
|
private String result;//操作结果
|
private String content;//日志内容
|
private Date date;//操作日期
|
private String type;//操作类型
|
private String module;//操作模块
|
private String entityDesc;//操作对象的描述
|
private String property;//操作的属性
|
private String previousVal;//操作前的值
|
private String newVal;//操作后的值
|
private String logType = "";
|
private String objId = "";//操作数据对象ID
|
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getUsername() {
|
return username;
|
}
|
public void setUsername(String username) {
|
this.username = username;
|
}
|
public String getUserIp() {
|
return userIp;
|
}
|
public void setUserIp(String userIp) {
|
this.userIp = userIp;
|
}
|
public String getResult() {
|
return result;
|
}
|
public void setResult(String result) {
|
this.result = result;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Date getDate() {
|
return date;
|
}
|
public void setDate(Date date) {
|
this.date = date;
|
}
|
public String getType() {
|
return type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
public String getModule() {
|
return module;
|
}
|
public void setModule(String module) {
|
this.module = module;
|
}
|
public String getEntityDesc() {
|
return entityDesc;
|
}
|
public void setEntityDesc(String entityDesc) {
|
this.entityDesc = entityDesc;
|
}
|
public String getProperty() {
|
return property;
|
}
|
public void setProperty(String property) {
|
this.property = property;
|
}
|
public String getPreviousVal() {
|
return previousVal;
|
}
|
public void setPreviousVal(String previousVal) {
|
this.previousVal = previousVal;
|
}
|
public String getNewVal() {
|
return newVal;
|
}
|
public void setNewVal(String newVal) {
|
this.newVal = newVal;
|
}
|
public String getLogType() {
|
return logType;
|
}
|
public void setLogType(String logType) {
|
this.logType = logType;
|
}
|
public String getObjId() {
|
return objId;
|
}
|
public void setObjId(String objId) {
|
this.objId = objId;
|
}
|
public String getRoleName() {
|
return roleName;
|
}
|
public void setRoleName(String roleName) {
|
this.roleName = roleName;
|
}
|
|
}
|