/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package open.dolphin.infomodel; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; /** * * @author kazushi Minagawa */ @Entity @Table(name = "d_factor2_code") public class Factor2Code implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; private long userPK; private String code; private String mobileNumber; public Long getId() { return id; } public void setId(Long id) { this.id = id; } @Override public int hashCode() { int hash = 0; hash += (id != null ? id.hashCode() : 0); return hash; } @Override public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof Factor2Code)) { return false; } Factor2Code other = (Factor2Code) object; if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) { return false; } return true; } @Override public String toString() { return "open.dolphin.infomodel.Factor2Code[ id=" + id + " ]"; } public long getUserPK() { return userPK; } public void setUserPK(long userPK) { this.userPK = userPK; } public String getMobileNumber() { return mobileNumber; } public void setMobileNumber(String mobileNumber) { this.mobileNumber = mobileNumber; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } }