Commit 861908f2aa2918d3433ef25d00f16e2b8671c2a4
1 parent
be299e5e
Exists in
master
Teste Pedro 2
Showing
1 changed file
with
10 additions
and
0 deletions
Show diff stats
src/test/java/br/gov/softwarepublico/teste/modelo/ImovelTestePedro.java
... | ... | @@ -3,6 +3,7 @@ package br.gov.softwarepublico.teste.modelo; |
3 | 3 | public class ImovelTestePedro { |
4 | 4 | |
5 | 5 | private String matricula; |
6 | + private String matricula2; | |
6 | 7 | |
7 | 8 | public String getMatricula() { |
8 | 9 | return matricula; |
... | ... | @@ -11,6 +12,15 @@ public class ImovelTestePedro { |
11 | 12 | public void setMatricula(String matricula) { |
12 | 13 | this.matricula = matricula; |
13 | 14 | } |
15 | + | |
16 | + public String getMatricula2() { | |
17 | + return matricula2; | |
18 | + } | |
19 | + | |
20 | + public void setMatricula2(String matricula2) { | |
21 | + this.matricula2 = matricula2; | |
22 | + } | |
23 | + | |
14 | 24 | |
15 | 25 | |
16 | 26 | } | ... | ... |