Rev 282 | Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 281 | espaco | 1 | package br.com.ec.domain.dto; |
| 2 | |||
| 3 | import java.util.ArrayList; |
||
| 4 | import java.util.List; |
||
| 5 | |||
| 6 | public class ConciliacaoBancariaDTO { |
||
| 7 | |||
| 8 | private VigenciaDTO vigenciaDTO; |
||
| 9 | |||
| 10 | private List<ConciliacaoBancariaArquivoExtratoDTO> arquivosExtratoBancarioDTO; |
||
| 11 | private List<ConciliacaoBancariaLancamentoDTO> lancamentosDTO; |
||
| 12 | private List<ConciliacaoBancariaLancamentoExtratoBancarioDTO> extratosDTO; |
||
| 13 | |||
| 14 | public ConciliacaoBancariaDTO() { |
||
| 15 | setArquivosExtratoBancarioDTO(new ArrayList<ConciliacaoBancariaArquivoExtratoDTO>()); |
||
| 16 | } |
||
| 17 | |||
| 18 | public ConciliacaoBancariaDTO(VigenciaDTO vigenciaDTO, List<ConciliacaoBancariaLancamentoDTO> lancamentosDTO, |
||
| 19 | List<ConciliacaoBancariaLancamentoExtratoBancarioDTO> extratosDTO) { |
||
| 20 | super(); |
||
| 21 | this.vigenciaDTO = vigenciaDTO; |
||
| 22 | this.lancamentosDTO = lancamentosDTO; |
||
| 23 | this.extratosDTO = extratosDTO; |
||
| 24 | } |
||
| 25 | |||
| 26 | public VigenciaDTO getVigenciaDTO() { |
||
| 27 | return vigenciaDTO; |
||
| 28 | } |
||
| 29 | |||
| 30 | public void setVigenciaDTO(VigenciaDTO vigenciaDTO) { |
||
| 31 | this.vigenciaDTO = vigenciaDTO; |
||
| 32 | } |
||
| 33 | |||
| 34 | public List<ConciliacaoBancariaArquivoExtratoDTO> getArquivosExtratoBancarioDTO() { |
||
| 35 | return arquivosExtratoBancarioDTO; |
||
| 36 | } |
||
| 37 | public void setArquivosExtratoBancarioDTO(List<ConciliacaoBancariaArquivoExtratoDTO> arquivosExtratoBancarioDTO) { |
||
| 38 | this.arquivosExtratoBancarioDTO = arquivosExtratoBancarioDTO; |
||
| 39 | } |
||
| 40 | |||
| 41 | public List<ConciliacaoBancariaLancamentoDTO> getLancamentosDTO() { |
||
| 42 | return lancamentosDTO; |
||
| 43 | } |
||
| 44 | |||
| 45 | public void setLancamentosDTO(List<ConciliacaoBancariaLancamentoDTO> lancamentosDTO) { |
||
| 46 | this.lancamentosDTO = lancamentosDTO; |
||
| 47 | } |
||
| 48 | |||
| 49 | public List<ConciliacaoBancariaLancamentoExtratoBancarioDTO> getExtratosDTO() { |
||
| 50 | return extratosDTO; |
||
| 51 | } |
||
| 52 | |||
| 53 | public void setExtratosDTO(List<ConciliacaoBancariaLancamentoExtratoBancarioDTO> extratosDTO) { |
||
| 54 | this.extratosDTO = extratosDTO; |
||
| 55 | } |
||
| 56 | |||
| 57 | public Double valorTotal() { |
||
| 58 | return 0.0; |
||
| 59 | } |
||
| 60 | |||
| 61 | } |