google-cloud-spanner-hibernate-samples/microprofile-jpa-sample/src/main/java/com/example/microprofile/Person.java [30:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Entity
public class Person {
  @GeneratedValue(strategy = GenerationType.AUTO)
  @JdbcTypeCode(Types.CHAR)
  @Id
  private UUID id;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



google-cloud-spanner-hibernate-samples/quarkus-jpa-sample/src/main/java/com/example/Person.java [30:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Entity
public class Person {
  @GeneratedValue(strategy = GenerationType.AUTO)
  @JdbcTypeCode(Types.CHAR)
  @Id
  private UUID id;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



