Last active
October 11, 2020 13:58
-
-
Save thiagolenz/51f17674363f8970b605b890289f04f3 to your computer and use it in GitHub Desktop.
PessoaDTOEntityRefatorado
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 Pessoa { | |
@Id private Long id; | |
private String nome; | |
} | |
@Entity | |
public class Endereco { | |
@Id private Long id; | |
private Long pessoaId; | |
private String rua; | |
private String numero; | |
private String bairro; | |
private String cep; | |
private String cidade; | |
private String uf; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment