Created
March 22, 2019 13:06
-
-
Save rinaldodev/08d0d0e02cfe6b52e5585c01ad697d19 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
public class Usuario { | |
@Id | |
private Long id; | |
@Column | |
private String primeiroNome; | |
@Column | |
private String sobrenome; | |
@Column | |
private String email; | |
@Transient | |
private String confirmacaoEmail; // preocupante | |
@Transient | |
private Boolean aceitouTermosDeUso; // preocupante | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment