FiltroExtratoQuitacao.java
1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package gcom.faturamento;
import gcom.util.filtro.Filtro;
public class FiltroExtratoQuitacao extends Filtro {
private static final long serialVersionUID = 1L;
/**
* Constructor for the FiltroCliente object
*
* @param campoOrderBy
* Description of the Parameter
*/
public FiltroExtratoQuitacao(String campoOrderBy) {
this.campoOrderBy = campoOrderBy;
}
/**
* Construtor da classe FiltroQuadra
*/
public FiltroExtratoQuitacao() {
}
/**
* Description of the Field
*/
public final static String ID = "id";
/**
* Description of the Field
*/
public final static String ID_IMOVEL = "imovel.id";
/**
* Description of the Field
*/
public final static String IMOVEL = "imovel";
/**
* Description of the Field
*/
public final static String FATURAMENTO_GRUPO_ID = "imovel.quadra.rota.faturamentoGrupo.id";
/**
* Description of the Field
*/
public final static String FATURAMENTO_GRUPO = "imovel.quadra.rota.faturamentoGrupo";
/**
* Description of the Field
*/
public final static String ANO_REFERENCIA = "anoReferencia";
/**
* Description of the Field
*/
public final static String ANO_MES_MENSAGEM_CONTA = "anoMesMensagemConta";
}