package com.hai.entity; import java.io.Serializable; import java.util.Date; /** * sec_sinopec_config * @author */ /** * * 代码由工具生成 * **/ public class SecSinopecConfig implements Serializable { /** * 主键 */ private Integer id; /** * 客户AppId */ private String appId; /** * 客户密码 */ private String appSecret; /** * 客户编码 */ private String code; /** * 创建时间 */ private Date createTime; /** * 签名key */ private String signkey; private static final long serialVersionUID = 1L; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getAppId() { return appId; } public void setAppId(String appId) { this.appId = appId; } public String getAppSecret() { return appSecret; } public void setAppSecret(String appSecret) { this.appSecret = appSecret; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getSignkey() { return signkey; } public void setSignkey(String signkey) { this.signkey = signkey; } @Override public boolean equals(Object that) { if (this == that) { return true; } if (that == null) { return false; } if (getClass() != that.getClass()) { return false; } SecSinopecConfig other = (SecSinopecConfig) 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.getAppSecret() == null ? other.getAppSecret() == null : this.getAppSecret().equals(other.getAppSecret())) && (this.getCode() == null ? other.getCode() == null : this.getCode().equals(other.getCode())) && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) && (this.getSignkey() == null ? other.getSignkey() == null : this.getSignkey().equals(other.getSignkey())); } @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 + ((getAppSecret() == null) ? 0 : getAppSecret().hashCode()); result = prime * result + ((getCode() == null) ? 0 : getCode().hashCode()); result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); result = prime * result + ((getSignkey() == null) ? 0 : getSignkey().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(", appId=").append(appId); sb.append(", appSecret=").append(appSecret); sb.append(", code=").append(code); sb.append(", createTime=").append(createTime); sb.append(", signkey=").append(signkey); sb.append(", serialVersionUID=").append(serialVersionUID); sb.append("]"); return sb.toString(); } }