BAEL-2097 fix
This commit is contained in:
parent
05d7d54131
commit
3d09c6056a
|
@ -7,7 +7,7 @@ import javax.persistence.GenerationType;
|
|||
import javax.persistence.Id;
|
||||
|
||||
@Entity
|
||||
class Address {
|
||||
public class Address {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.AUTO)
|
||||
|
|
|
@ -9,7 +9,7 @@ import javax.persistence.JoinColumn;
|
|||
import javax.persistence.ManyToOne;
|
||||
|
||||
@Entity
|
||||
class Email {
|
||||
public class Email {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.AUTO)
|
||||
|
|
|
@ -9,7 +9,7 @@ import javax.persistence.Id;
|
|||
import javax.persistence.OneToMany;
|
||||
|
||||
@Entity
|
||||
class Employee {
|
||||
public class Employee {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.AUTO)
|
||||
|
|
|
@ -10,7 +10,7 @@ import javax.persistence.JoinColumns;
|
|||
import javax.persistence.ManyToOne;
|
||||
|
||||
@Entity
|
||||
class Office {
|
||||
public class Office {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.AUTO)
|
||||
|
|
Loading…
Reference in New Issue