1 package ecar.bean;
2
3 /**
4 * Bean contendo as informações dos valores das metas físicas e seus exercícios.<br>
5 *
6 * @author aleixo
7 */
8
9 public class IndResulExercicioBean {
10
11 private Long codExe;
12 private Double valor;
13
14 /**
15 * Retorna Long codExe.<br>
16 *
17 * @author N/C
18 * @since N/C
19 * @version N/C
20 * @return Long
21 */
22 public Long getCodExe() {
23 return codExe;
24 }
25
26 /**
27 * Atribui valor especificado para Long codExe.<br>
28 *
29 * @author N/C
30 * @since N/C
31 * @version N/C
32 * @param Long codExe
33 */
34 public void setCodExe(Long codExe) {
35 this.codExe = codExe;
36 }
37
38 /**
39 * Retorna Double valor.<br>
40 *
41 * @author N/C
42 * @since N/C
43 * @version N/C
44 * @return Double
45 */
46 public Double getValor() {
47 return valor;
48 }
49
50 /**
51 * Atribui valor especificado para Double valor.<br>
52 *
53 * @author N/C
54 * @since N/C
55 * @version N/C
56 * @param Double valor
57 */
58 public void setValor(Double valor) {
59 this.valor = valor;
60 }
61 }