1
2
3
4 package ecar.bean;
5
6 import java.util.List;
7
8 import ecar.pojo.EstruturaEtt;
9
10
11
12
13
14
15
16
17 public class OrdenacaoTpfaEstrutura {
18 private EstruturaEtt estrutura;
19 private List tipoFuncAcomp;
20
21
22
23
24
25
26
27
28
29 public EstruturaEtt getEstrutura() {
30 return estrutura;
31 }
32
33
34
35
36
37
38
39
40
41 public void setEstrutura(EstruturaEtt estrutura) {
42 this.estrutura = estrutura;
43 }
44
45
46
47
48
49
50
51
52
53 public List getTipoFuncAcomp() {
54 return tipoFuncAcomp;
55 }
56
57
58
59
60
61
62
63
64
65 public void setTipoFuncAcomp(List tipoFuncAcomp) {
66 this.tipoFuncAcomp = tipoFuncAcomp;
67 }
68
69 }