Created
March 12, 2020 23:53
-
-
Save gdonega/63cb4e99dfae47b1ccce86153fba6feb 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
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