-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEndereco.java
More file actions
81 lines (63 loc) · 1.49 KB
/
Copy pathEndereco.java
File metadata and controls
81 lines (63 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
public class Endereco {
private int id;
private String cep, rua, bairro, cidade, uf, pais, numero, complemento;
public Endereco(int id, String cep, String rua, String bairro, String cidade, String uf, String pais, String numero, String complemento) {
this.id = id;
this.cep = cep;
this.cep = rua;
this.bairro = bairro;
this.cidade = cidade;
this.uf = uf;
this.pais = pais;
this.numero = numero;
this.complemento = complemento;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getCep() {
return cep;
}
public void setCep(String cep) {
this.cep = cep;
}
public String getRua() {
return rua;
}
public void setRua(String rua) {
this.rua = rua;
}
public String getBairro() {
return bairro;
}
public void setBairro(String bairro) {
this.bairro = bairro;
}
public String getCidade() {
return cidade;
}
public void setCidade(String cidade) {
this.cidade = cidade;
}
public String getUf() {
return uf;
}
public void setUf(String uf) {
this.uf = uf;
}
public String getPais() {
return pais;
}
public void setPais(String pais) {
this.pais = pais;
}
public String getNumero() {
return this.numero;
}
public void setNUmero(String numero) {
this.numero = numero;
}
}