19 lines
392 B
Java
19 lines
392 B
Java
package com.baeldung.hibernate.joincolumn;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
|
|
@Entity
|
|
public class Address {
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
|
private Long id;
|
|
|
|
@Column(name = "ZIP")
|
|
private String zipCode;
|
|
|
|
} |