📄 logvo.java
字号:
/**
*
*/
package com.seavision.PermissionManage.vo;
import java.util.Date;
/**
* @author Administrator
*
*/
public class LogVO {
private int logId;//日志编号
private String operator;//操作者
private String url;//路径
private String ipAddress;//IP地址
private String actionName;//动作名称
private Date logDate;//日期
/**
* @return Returns the actionName.
*/
public String getActionName() {
return actionName;
}
/**
* @param actionName The actionName to set.
*/
public void setActionName(String actionName) {
this.actionName = actionName;
}
/**
* @return Returns the ipAddress.
*/
public String getIpAddress() {
return ipAddress;
}
/**
* @param ipAddress The ipAddress to set.
*/
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
/**
* @return Returns the logDate.
*/
public Date getLogDate() {
return logDate;
}
/**
* @param logDate The logDate to set.
*/
public void setLogDate(Date logDate) {
this.logDate = logDate;
}
/**
* @return Returns the logId.
*/
public int getLogId() {
return logId;
}
/**
* @param logId The logId to set.
*/
public void setLogId(int logId) {
this.logId = logId;
}
/**
* @return Returns the operator.
*/
public String getOperator() {
return operator;
}
/**
* @param operator The operator to set.
*/
public void setOperator(String operator) {
this.operator = operator;
}
/**
* @return Returns the url.
*/
public String getUrl() {
return url;
}
/**
* @param url The url to set.
*/
public void setUrl(String url) {
this.url = url;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -