1 package ecar.bean;
2
3 import java.io.Serializable;
4
5
6
7
8
9
10
11
12
13
14 public class IndicativoItemWebServiceBean implements Serializable {
15
16
17
18
19 private static final long serialVersionUID = 4562696001506498529L;
20
21 private Long codIndicativo;
22 private String descricaoIndicativo;
23
24
25
26
27
28
29 public IndicativoItemWebServiceBean(){
30 }
31
32
33
34
35
36
37
38
39
40 public IndicativoItemWebServiceBean(Long codIndicativo, String descricaoIndicativo) {
41 this.codIndicativo = codIndicativo;
42 this.descricaoIndicativo = descricaoIndicativo;
43 }
44
45
46
47
48
49
50
51 public Long getCodIndicativo() {
52 return codIndicativo;
53 }
54
55
56
57
58
59
60
61 public void setCodIndicativo(Long codIndicativo) {
62 this.codIndicativo = codIndicativo;
63 }
64
65
66
67
68
69
70
71 public String getDescricaoIndicativo() {
72 return descricaoIndicativo;
73 }
74
75
76
77
78
79
80
81 public void setDescricaoIndicativo(String descricaoIndicativo) {
82 this.descricaoIndicativo = descricaoIndicativo;
83 }
84 }