You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
177 lines
4.8 KiB
177 lines
4.8 KiB
package com.hai.entity;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* sec_operation_log
|
|
* @author
|
|
*/
|
|
/**
|
|
*
|
|
* 代码由工具生成
|
|
*
|
|
**/
|
|
public class SecOperationLog implements Serializable {
|
|
/**
|
|
* 主键
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* ip地址
|
|
*/
|
|
private String ip;
|
|
|
|
/**
|
|
* 模块
|
|
*/
|
|
private String module;
|
|
|
|
/**
|
|
* 操作
|
|
*/
|
|
private String description;
|
|
|
|
/**
|
|
* 详细内容
|
|
*/
|
|
private String content;
|
|
|
|
/**
|
|
* 操作时间
|
|
*/
|
|
private Date operationTime;
|
|
|
|
/**
|
|
* 操作id
|
|
*/
|
|
private Long operationId;
|
|
|
|
/**
|
|
* 操作用户名称
|
|
*/
|
|
private String operationName;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getIp() {
|
|
return ip;
|
|
}
|
|
|
|
public void setIp(String ip) {
|
|
this.ip = ip;
|
|
}
|
|
|
|
public String getModule() {
|
|
return module;
|
|
}
|
|
|
|
public void setModule(String module) {
|
|
this.module = module;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public Date getOperationTime() {
|
|
return operationTime;
|
|
}
|
|
|
|
public void setOperationTime(Date operationTime) {
|
|
this.operationTime = operationTime;
|
|
}
|
|
|
|
public Long getOperationId() {
|
|
return operationId;
|
|
}
|
|
|
|
public void setOperationId(Long operationId) {
|
|
this.operationId = operationId;
|
|
}
|
|
|
|
public String getOperationName() {
|
|
return operationName;
|
|
}
|
|
|
|
public void setOperationName(String operationName) {
|
|
this.operationName = operationName;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object that) {
|
|
if (this == that) {
|
|
return true;
|
|
}
|
|
if (that == null) {
|
|
return false;
|
|
}
|
|
if (getClass() != that.getClass()) {
|
|
return false;
|
|
}
|
|
SecOperationLog other = (SecOperationLog) that;
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
&& (this.getIp() == null ? other.getIp() == null : this.getIp().equals(other.getIp()))
|
|
&& (this.getModule() == null ? other.getModule() == null : this.getModule().equals(other.getModule()))
|
|
&& (this.getDescription() == null ? other.getDescription() == null : this.getDescription().equals(other.getDescription()))
|
|
&& (this.getContent() == null ? other.getContent() == null : this.getContent().equals(other.getContent()))
|
|
&& (this.getOperationTime() == null ? other.getOperationTime() == null : this.getOperationTime().equals(other.getOperationTime()))
|
|
&& (this.getOperationId() == null ? other.getOperationId() == null : this.getOperationId().equals(other.getOperationId()))
|
|
&& (this.getOperationName() == null ? other.getOperationName() == null : this.getOperationName().equals(other.getOperationName()));
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
final int prime = 31;
|
|
int result = 1;
|
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
|
|
result = prime * result + ((getIp() == null) ? 0 : getIp().hashCode());
|
|
result = prime * result + ((getModule() == null) ? 0 : getModule().hashCode());
|
|
result = prime * result + ((getDescription() == null) ? 0 : getDescription().hashCode());
|
|
result = prime * result + ((getContent() == null) ? 0 : getContent().hashCode());
|
|
result = prime * result + ((getOperationTime() == null) ? 0 : getOperationTime().hashCode());
|
|
result = prime * result + ((getOperationId() == null) ? 0 : getOperationId().hashCode());
|
|
result = prime * result + ((getOperationName() == null) ? 0 : getOperationName().hashCode());
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(getClass().getSimpleName());
|
|
sb.append(" [");
|
|
sb.append("Hash = ").append(hashCode());
|
|
sb.append(", id=").append(id);
|
|
sb.append(", ip=").append(ip);
|
|
sb.append(", module=").append(module);
|
|
sb.append(", description=").append(description);
|
|
sb.append(", content=").append(content);
|
|
sb.append(", operationTime=").append(operationTime);
|
|
sb.append(", operationId=").append(operationId);
|
|
sb.append(", operationName=").append(operationName);
|
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
sb.append("]");
|
|
return sb.toString();
|
|
}
|
|
} |