data class Customer( @Id @GeneratedValue(strategy = GenerationType.AUTO) val id: Long = 0, val name: String = "", @OneToOne val country: Country = Country() )