Skip to content

Instantly share code, notes, and snippets.

@alexandre-jacquot-ptl
Last active May 18, 2021 15:59
Show Gist options
  • Save alexandre-jacquot-ptl/f78713b2d63b9b381c1c17b8ecb0b32c to your computer and use it in GitHub Desktop.
Save alexandre-jacquot-ptl/f78713b2d63b9b381c1c17b8ecb0b32c to your computer and use it in GitHub Desktop.
r2dbc person
@Table
@Getter
@Setter
@Accessors(chain = true)
public class Person {
@Id
private Long id;
@Version
private Long version;
@NotBlank
@Size(max=100)
private String firstName;
@NotBlank
@Size(max=100)
private String lastName;
@CreatedDate
private LocalDateTime createdDate;
@LastModifiedDate
private LocalDateTime lastModifiedDate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment