Subversion Repositories Integrator Subversion

Rev

Rev 430 | Rev 669 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 430 Rev 439
Line 7... Line 7...
7
        private Long sequencial;
7
        private Long sequencial;
8
//      private ContaDTO contaDTO;
8
//      private ContaDTO contaDTO;
9
        private CategoriaDTO categoriaDTO;
9
        private CategoriaDTO categoriaDTO;
10
        private ContaBancariaDTO contaBancariaDTO;
10
        private ContaBancariaDTO contaBancariaDTO;
11
        private FormaPagamentoDTO formaPagamentoDTO;
11
        private FormaPagamentoDTO formaPagamentoDTO;
-
 
12
        private Date dataVencimento;
12
        private Date dataPagamento;
13
        private Date dataPagamento;
13
        private Double valor;
14
        private Double valor;
14
        private String observacao;
15
        private String observacao;
15
        private Boolean indicadorConciliado;
16
        private Boolean indicadorConciliado;
16
       
17
       
Line 24... Line 25...
24
        private Boolean indicadorAtivo;
25
        private Boolean indicadorAtivo;
25
        */
26
        */
26
       
27
       
27
        public ParcelaDTO() {}
28
        public ParcelaDTO() {}
28
       
29
       
29
        public ParcelaDTO(Long sequencial, Double valor) {
-
 
-
 
30
        public ParcelaDTO(Long sequencial, Double valor, Date dataPagamento, Date dataVencimento) {
30
                this.sequencial = sequencial;
31
                this.sequencial = sequencial;
31
                this.valor = valor;
32
                this.valor = valor;
-
 
33
                this.dataPagamento = dataPagamento;
-
 
34
                this.dataVencimento = dataVencimento;
32
        }
35
        }
33
       
36
       
34
        public static String CONSULTA_SEM_CATEGORIA_DTO = "e.sequencial, e.contaBancaria.sequencial, e.contaBancaria.descricao, " +
37
        public static String CONSULTA_SEM_CATEGORIA_DTO = "e.sequencial, e.contaBancaria.sequencial, e.contaBancaria.descricao, " +
35
                        "e.contaBancaria.tipoContaBancaria, e.contaBancaria.ativo, e.dataPagamento, e.valor, e.observacao, e.indicadorConciliado";
38
                        "e.contaBancaria.tipoContaBancaria, e.contaBancaria.ativo, e.dataPagamento, e.valor, e.observacao, e.indicadorConciliado";
36
        public ParcelaDTO(Long sequencial, Long sequencialContaBancaria, String descricaoContaBancaria,
39
        public ParcelaDTO(Long sequencial, Long sequencialContaBancaria, String descricaoContaBancaria,
Line 87... Line 90...
87
        public FormaPagamentoDTO getFormaPagamentoDTO() {
90
        public FormaPagamentoDTO getFormaPagamentoDTO() {
88
                return formaPagamentoDTO;
91
                return formaPagamentoDTO;
89
        }
92
        }
90
        public void setFormaPagamentoDTO(FormaPagamentoDTO formaPagamentoDTO) {
93
        public void setFormaPagamentoDTO(FormaPagamentoDTO formaPagamentoDTO) {
91
                this.formaPagamentoDTO = formaPagamentoDTO;
94
                this.formaPagamentoDTO = formaPagamentoDTO;
-
 
95
        }
-
 
96
       
-
 
97
        public Date getDataVencimento() {
-
 
98
                return dataVencimento;
-
 
99
        }
-
 
100
        public void setDataVencimento(Date dataVencimento) {
-
 
101
                this.dataVencimento = dataVencimento;
92
        }
102
        }
93
103
94
        public Date getDataPagamento() {
104
        public Date getDataPagamento() {
95
                return dataPagamento;
105
                return dataPagamento;
96
        }
106
        }