parent
3d09c6056a
commit
b27d20a46a
|
@ -1,19 +0,0 @@
|
||||||
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;
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue