Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gdonega/63cb4e99dfae47b1ccce86153fba6feb to your computer and use it in GitHub Desktop.
Save gdonega/63cb4e99dfae47b1ccce86153fba6feb to your computer and use it in GitHub Desktop.
package com.testes.spring.exemplo.empresas.dtos;
public class CnpjDto {
private String cnpj;
public CnpjDto() {
}
public String getCnpj() {
return cnpj;
}
public void setCnpj(String cnpj) {
this.cnpj = cnpj;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment