View Javadoc

1   package ecar.servlet.relatorio.PPA_funcao.bean;
2   
3   import java.io.Serializable;
4   import java.math.BigDecimal;
5   
6   import ecar.pojo.SubAreaSare;
7   
8   public class FuncaoSubAreaSareBean implements Serializable{
9   
10  	private static final long serialVersionUID = -1271772962860232161L;
11  	
12  	private SubAreaSare subAreaSare;
13  
14      private String nomeSare;
15      
16      private Long codigoIdentSare;
17      
18  	private BigDecimal valor1;
19  	private BigDecimal valor2;
20  	private BigDecimal valor3;
21  	private BigDecimal valor4;
22  	private BigDecimal total;	
23  	private Integer indice;
24  	
25  	
26  	
27  	
28  	public Integer getIndice() {
29  		return indice;
30  	}
31  
32  	public void setIndice(Integer indice) {
33  		this.indice = indice;
34  	}
35  
36  	public SubAreaSare getSubAreaSare() {
37  		return subAreaSare;
38  	}
39  
40  	public void setSubAreaSare(SubAreaSare subAreaSare) {
41  		this.subAreaSare = subAreaSare;
42  	}
43  
44  	public BigDecimal getTotal() {
45  		return total;
46  	}
47  
48  	public void setTotal(BigDecimal total) {
49  		this.total = total;
50  	}
51  
52  	public BigDecimal getValor1() {
53  		return valor1;
54  	}
55  
56  	public void setValor1(BigDecimal valor1) {
57  		this.valor1 = valor1;
58  	}
59  
60  	public BigDecimal getValor2() {
61  		return valor2;
62  	}
63  
64  	public void setValor2(BigDecimal valor2) {
65  		this.valor2 = valor2;
66  	}
67  
68  	public BigDecimal getValor3() {
69  		return valor3;
70  	}
71  
72  	public void setValor3(BigDecimal valor3) {
73  		this.valor3 = valor3;
74  	}
75  
76  	public BigDecimal getValor4() {
77  		return valor4;
78  	}
79  
80  	public void setValor4(BigDecimal valor4) {
81  		this.valor4 = valor4;
82  	}
83  
84  
85  	public String toString() {
86  		return subAreaSare.getCodigoIdentSare().toString() + " " + subAreaSare.getNomeSare() + " " + valor1.toString() + " " + valor2.toString() + " " + valor3.toString() + " " + valor4.toString() + " " + total.toString();
87  	}
88  
89  	public Long getCodigoIdentSare() {
90  		return codigoIdentSare;
91  	}
92  
93  	public void setCodigoIdentSare(Long codigoIdentSare) {
94  		this.codigoIdentSare = codigoIdentSare;
95  	}
96  
97  	public String getNomeSare() {
98  		return nomeSare;
99  	}
100 
101 	public void setNomeSare(String nomeSare) {
102 		this.nomeSare = nomeSare;
103 	}
104 	
105 	
106 }
107