BAEL-2097 fix

This commit is contained in:
Krzysztof Majewski 2018-08-20 21:46:55 +02:00
parent 05d7d54131
commit 3d09c6056a
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import javax.persistence.GenerationType;
import javax.persistence.Id;
@Entity
class Address {
public class Address {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)

View File

@ -9,7 +9,7 @@ import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
@Entity
class Email {
public class Email {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)

View File

@ -9,7 +9,7 @@ import javax.persistence.Id;
import javax.persistence.OneToMany;
@Entity
class Employee {
public class Employee {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)

View File

@ -10,7 +10,7 @@ import javax.persistence.JoinColumns;
import javax.persistence.ManyToOne;
@Entity
class Office {
public class Office {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)