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/9e99834ea56de2555a92e548620fcce6 to your computer and use it in GitHub Desktop.
Save alexandre-jacquot-ptl/9e99834ea56de2555a92e548620fcce6 to your computer and use it in GitHub Desktop.
r2dbc tag
@Table
@Getter
@Setter
@Accessors(chain = true)
public class Tag {
@Id
private Long id;
@Version
private Long version;
@NotBlank
@Size(max=100)
private String name;
@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