52 lines
861 B
Java
52 lines
861 B
Java
|
|
package baeldung.model;
|
||
|
|
|
||
|
|
import javax.persistence.Entity;
|
||
|
|
import javax.persistence.GeneratedValue;
|
||
|
|
import javax.persistence.Id;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Created by adam.
|
||
|
|
*/
|
||
|
|
@Entity
|
||
|
|
public class Address {
|
||
|
|
|
||
|
|
@Id
|
||
|
|
@GeneratedValue
|
||
|
|
private Long id;
|
||
|
|
private String street;
|
||
|
|
private String city;
|
||
|
|
private String postCode;
|
||
|
|
|
||
|
|
public Long getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(Long id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getStreet() {
|
||
|
|
return street;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setStreet(String street) {
|
||
|
|
this.street = street;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCity() {
|
||
|
|
return city;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCity(String city) {
|
||
|
|
this.city = city;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getPostCode() {
|
||
|
|
return postCode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPostCode(String postCode) {
|
||
|
|
this.postCode = postCode;
|
||
|
|
}
|
||
|
|
}
|