package com.hai.entity; import java.io.Serializable; import java.util.Date; /** * bs_tripartite_req_log * @author */ /** * * 代码由工具生成 * **/ public class BsTripartiteReqLog implements Serializable { /** * 主键 */ private Long id; /** * 日志类型 */ private Integer logType; /** * 日志类型名称 */ private String logTypeName; /** * 日志编号 */ private String logSerialNo; /** * 请求类型 */ private Integer requestType; /** * 请求URL */ private String requestUrl; /** * 请求参数 */ private String requestContent; /** * 创建时间 */ private Date createTime; private String ext1; private String ext2; private String ext3; /** * 响应内容 */ private String responseContent; private static final long serialVersionUID = 1L; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Integer getLogType() { return logType; } public void setLogType(Integer logType) { this.logType = logType; } public String getLogTypeName() { return logTypeName; } public void setLogTypeName(String logTypeName) { this.logTypeName = logTypeName; } public String getLogSerialNo() { return logSerialNo; } public void setLogSerialNo(String logSerialNo) { this.logSerialNo = logSerialNo; } public Integer getRequestType() { return requestType; } public void setRequestType(Integer requestType) { this.requestType = requestType; } public String getRequestUrl() { return requestUrl; } public void setRequestUrl(String requestUrl) { this.requestUrl = requestUrl; } public String getRequestContent() { return requestContent; } public void setRequestContent(String requestContent) { this.requestContent = requestContent; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getExt1() { return ext1; } public void setExt1(String ext1) { this.ext1 = ext1; } public String getExt2() { return ext2; } public void setExt2(String ext2) { this.ext2 = ext2; } public String getExt3() { return ext3; } public void setExt3(String ext3) { this.ext3 = ext3; } public String getResponseContent() { return responseContent; } public void setResponseContent(String responseContent) { this.responseContent = responseContent; } @Override public boolean equals(Object that) { if (this == that) { return true; } if (that == null) { return false; } if (getClass() != that.getClass()) { return false; } BsTripartiteReqLog other = (BsTripartiteReqLog) that; return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) && (this.getLogType() == null ? other.getLogType() == null : this.getLogType().equals(other.getLogType())) && (this.getLogTypeName() == null ? other.getLogTypeName() == null : this.getLogTypeName().equals(other.getLogTypeName())) && (this.getLogSerialNo() == null ? other.getLogSerialNo() == null : this.getLogSerialNo().equals(other.getLogSerialNo())) && (this.getRequestType() == null ? other.getRequestType() == null : this.getRequestType().equals(other.getRequestType())) && (this.getRequestUrl() == null ? other.getRequestUrl() == null : this.getRequestUrl().equals(other.getRequestUrl())) && (this.getRequestContent() == null ? other.getRequestContent() == null : this.getRequestContent().equals(other.getRequestContent())) && (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.getResponseContent() == null ? other.getResponseContent() == null : this.getResponseContent().equals(other.getResponseContent())); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); result = prime * result + ((getLogType() == null) ? 0 : getLogType().hashCode()); result = prime * result + ((getLogTypeName() == null) ? 0 : getLogTypeName().hashCode()); result = prime * result + ((getLogSerialNo() == null) ? 0 : getLogSerialNo().hashCode()); result = prime * result + ((getRequestType() == null) ? 0 : getRequestType().hashCode()); result = prime * result + ((getRequestUrl() == null) ? 0 : getRequestUrl().hashCode()); result = prime * result + ((getRequestContent() == null) ? 0 : getRequestContent().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 + ((getResponseContent() == null) ? 0 : getResponseContent().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(", logType=").append(logType); sb.append(", logTypeName=").append(logTypeName); sb.append(", logSerialNo=").append(logSerialNo); sb.append(", requestType=").append(requestType); sb.append(", requestUrl=").append(requestUrl); sb.append(", requestContent=").append(requestContent); sb.append(", createTime=").append(createTime); sb.append(", ext1=").append(ext1); sb.append(", ext2=").append(ext2); sb.append(", ext3=").append(ext3); sb.append(", responseContent=").append(responseContent); sb.append(", serialVersionUID=").append(serialVersionUID); sb.append("]"); return sb.toString(); } }