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.
107 lines
4.2 KiB
107 lines
4.2 KiB
package com.hfkj.entity;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* bs_agent_api_log
|
|
* @author
|
|
*/
|
|
public class BsAgentApiLogWithBLOBs extends BsAgentApiLog implements Serializable {
|
|
/**
|
|
* 请求参数
|
|
*/
|
|
private String requestParam;
|
|
|
|
/**
|
|
* 响应参数
|
|
*/
|
|
private String responseParam;
|
|
|
|
/**
|
|
* 错误内容
|
|
*/
|
|
private String errorContent;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public String getRequestParam() {
|
|
return requestParam;
|
|
}
|
|
|
|
public void setRequestParam(String requestParam) {
|
|
this.requestParam = requestParam;
|
|
}
|
|
|
|
public String getResponseParam() {
|
|
return responseParam;
|
|
}
|
|
|
|
public void setResponseParam(String responseParam) {
|
|
this.responseParam = responseParam;
|
|
}
|
|
|
|
public String getErrorContent() {
|
|
return errorContent;
|
|
}
|
|
|
|
public void setErrorContent(String errorContent) {
|
|
this.errorContent = errorContent;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object that) {
|
|
if (this == that) {
|
|
return true;
|
|
}
|
|
if (that == null) {
|
|
return false;
|
|
}
|
|
if (getClass() != that.getClass()) {
|
|
return false;
|
|
}
|
|
BsAgentApiLogWithBLOBs other = (BsAgentApiLogWithBLOBs) that;
|
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
|
|
&& (this.getAppId() == null ? other.getAppId() == null : this.getAppId().equals(other.getAppId()))
|
|
&& (this.getRequestId() == null ? other.getRequestId() == null : this.getRequestId().equals(other.getRequestId()))
|
|
&& (this.getRequestUrl() == null ? other.getRequestUrl() == null : this.getRequestUrl().equals(other.getRequestUrl()))
|
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
|
|
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1()))
|
|
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2()))
|
|
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3()))
|
|
&& (this.getRequestParam() == null ? other.getRequestParam() == null : this.getRequestParam().equals(other.getRequestParam()))
|
|
&& (this.getResponseParam() == null ? other.getResponseParam() == null : this.getResponseParam().equals(other.getResponseParam()))
|
|
&& (this.getErrorContent() == null ? other.getErrorContent() == null : this.getErrorContent().equals(other.getErrorContent()));
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
final int prime = 31;
|
|
int result = 1;
|
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
|
|
result = prime * result + ((getAppId() == null) ? 0 : getAppId().hashCode());
|
|
result = prime * result + ((getRequestId() == null) ? 0 : getRequestId().hashCode());
|
|
result = prime * result + ((getRequestUrl() == null) ? 0 : getRequestUrl().hashCode());
|
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
|
|
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode());
|
|
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode());
|
|
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode());
|
|
result = prime * result + ((getRequestParam() == null) ? 0 : getRequestParam().hashCode());
|
|
result = prime * result + ((getResponseParam() == null) ? 0 : getResponseParam().hashCode());
|
|
result = prime * result + ((getErrorContent() == null) ? 0 : getErrorContent().hashCode());
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(getClass().getSimpleName());
|
|
sb.append(" [");
|
|
sb.append("Hash = ").append(hashCode());
|
|
sb.append(", requestParam=").append(requestParam);
|
|
sb.append(", responseParam=").append(responseParam);
|
|
sb.append(", errorContent=").append(errorContent);
|
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
sb.append("]");
|
|
return sb.toString();
|
|
}
|
|
} |