package webctdbexport.db;
// Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1
import java.math.BigDecimal;
import javax.persistence.Column;
import javax.persistence.Embeddable;
/**
* RptAddressId generated by hbm2java
*/
@Embeddable
public class RptAddressId implements java.io.Serializable {
private BigDecimal addrId;
private BigDecimal personId;
private String addrType;
private String adrCountry;
private String adrExtadd;
private String adrLocality;
private String adrPobox;
private String adrRegion;
private String adrPcode;
private String adrStreet;
public RptAddressId() {
}
public RptAddressId(BigDecimal addrId, BigDecimal personId, String addrType, String adrCountry, String adrExtadd, String adrLocality, String adrPobox, String adrRegion, String adrPcode, String adrStreet) {
this.addrId = addrId;
this.personId = personId;
this.addrType = addrType;
this.adrCountry = adrCountry;
this.adrExtadd = adrExtadd;
this.adrLocality = adrLocality;
this.adrPobox = adrPobox;
this.adrRegion = adrRegion;
this.adrPcode = adrPcode;
this.adrStreet = adrStreet;
}
@Column(name="ADDR_ID", nullable=false, precision=20, scale=0)
public BigDecimal getAddrId() {
return this.addrId;
}
public void setAddrId(BigDecimal addrId) {
this.addrId = addrId;
}
@Column(name="PERSON_ID", nullable=false, precision=20, scale=0)
public BigDecimal getPersonId() {
return this.personId;
}
public void setPersonId(BigDecimal personId) {
this.personId = personId;
}
@Column(name="ADDR_TYPE", nullable=false, length=90)
public String getAddrType() {
return this.addrType;
}
public void setAddrType(String addrType) {
this.addrType = addrType;
}
@Column(name="ADR_COUNTRY", nullable=false, length=192)
public String getAdrCountry() {
return this.adrCountry;
}
public void setAdrCountry(String adrCountry) {
this.adrCountry = adrCountry;
}
@Column(name="ADR_EXTADD", nullable=false, length=384)
public String getAdrExtadd() {
return this.adrExtadd;
}
public void setAdrExtadd(String adrExtadd) {
this.adrExtadd = adrExtadd;
}
@Column(name="ADR_LOCALITY", nullable=false, length=192)
public String getAdrLocality() {
return this.adrLocality;
}
public void setAdrLocality(String adrLocality) {
this.adrLocality = adrLocality;
}
@Column(name="ADR_POBOX", nullable=false, length=96)
public String getAdrPobox() {
return this.adrPobox;
}
public void setAdrPobox(String adrPobox) {
this.adrPobox = adrPobox;
}
@Column(name="ADR_REGION", nullable=false, length=192)
public String getAdrRegion() {
return this.adrRegion;
}
public void setAdrRegion(String adrRegion) {
this.adrRegion = adrRegion;
}
@Column(name="ADR_PCODE", nullable=false, length=96)
public String getAdrPcode() {
return this.adrPcode;
}
public void setAdrPcode(String adrPcode) {
this.adrPcode = adrPcode;
}
@Column(name="ADR_STREET", nullable=false, length=384)
public String getAdrStreet() {
return this.adrStreet;
}
public void setAdrStreet(String adrStreet) {
this.adrStreet = adrStreet;
}
}