package com.os4j.model; import java.io.Serializable; import java.util.List; public class CreditLine implements Serializable { private static final long serialVersionUID = 8149899168474817586L; private Long id; private Long applicationId; // 申请id private Long customerId; // 客户id private List<AttributeValueDTO> attributeList; public CreditLine(){} @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((id == null) ? 0 : id.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; CreditLine other = (CreditLine) obj; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; return true; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getApplicationId() { return applicationId; } public void setApplicationId(Long applicationId) { this.applicationId = applicationId; } public Long getCustomerId() { return customerId; } public void setCustomerId(Long customerId) { this.customerId = customerId; } public List<AttributeValueDTO> getAttributeList() { return attributeList; } public void setAttributeList(List<AttributeValueDTO> attributeList) { this.attributeList = attributeList; } }
