Skip to content

Instantly share code, notes, and snippets.

@thiagolenz
Last active October 11, 2020 13:58
Show Gist options
  • Save thiagolenz/51f17674363f8970b605b890289f04f3 to your computer and use it in GitHub Desktop.
Save thiagolenz/51f17674363f8970b605b890289f04f3 to your computer and use it in GitHub Desktop.
PessoaDTOEntityRefatorado
@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