Rev 375 | Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 296 | espaco | 1 | package br.com.ec.domain.dto; |
| 2 | |||
| 3 | import java.util.Date; |
||
| 4 | |||
| 5 | public class ExtratoBancoDTO { |
||
| 6 | |||
| 7 | private Long sequencial; |
||
| 8 | private ContaBancariaDTO contaBancariaDTO; |
||
| 9 | private String tipoExtratoBanco; // D - Débitos e C - Créditos e P - Pagamento |
||
| 10 | private Date dataLancamento; |
||
| 11 | private Double valorTotal; |
||
| 12 | private String observacao; |
||
| 13 | |||
| 14 | public ExtratoBancoDTO() {} |
||
| 15 | |||
| 16 | public ExtratoBancoDTO(Long sequencial, Long sequencialContaBancaria, String descricaoContaBancaria, |
||
| 17 | String tipoContaBancaria, Boolean ativoContaBancaria, String tipoExtratoBanco, |
||
| 18 | Date dataLancamento, Double valorTotal, String observacao) { |
||
| 19 | super(); |
||
| 20 | this.sequencial = sequencial; |
||
| 21 | this.contaBancariaDTO = new ContaBancariaDTO(sequencialContaBancaria, descricaoContaBancaria, tipoContaBancaria, ativoContaBancaria); |
||
| 22 | this.tipoExtratoBanco = tipoExtratoBanco; |
||
| 23 | this.dataLancamento = dataLancamento; |
||
| 24 | this.valorTotal = valorTotal; |
||
| 25 | this.observacao = observacao; |
||
| 26 | } |
||
| 27 | |||
| 28 | public ExtratoBancoDTO(Long sequencial, ContaBancariaDTO contaBancariaDTO, String tipoExtratoBanco, |
||
| 29 | Date dataLancamento, Double valorTotal) { |
||
| 30 | super(); |
||
| 31 | this.sequencial = sequencial; |
||
| 32 | this.contaBancariaDTO = contaBancariaDTO; |
||
| 33 | this.tipoExtratoBanco = tipoExtratoBanco; |
||
| 34 | this.dataLancamento = dataLancamento; |
||
| 35 | this.valorTotal = valorTotal; |
||
| 36 | } |
||
| 37 | |||
| 38 | public Long getSequencial() { |
||
| 39 | return sequencial; |
||
| 40 | } |
||
| 41 | public void setSequencial(Long sequencial) { |
||
| 42 | this.sequencial = sequencial; |
||
| 43 | } |
||
| 44 | |||
| 45 | public ContaBancariaDTO getContaBancariaDTO() { |
||
| 46 | return contaBancariaDTO; |
||
| 47 | } |
||
| 48 | public void setContaBancariaDTO(ContaBancariaDTO contaBancariaDTO) { |
||
| 49 | this.contaBancariaDTO = contaBancariaDTO; |
||
| 50 | } |
||
| 51 | |||
| 52 | public String getTipoExtratoBanco() { |
||
| 53 | return tipoExtratoBanco; |
||
| 54 | } |
||
| 55 | public void setTipoExtratoBanco(String tipoExtratoBanco) { |
||
| 56 | this.tipoExtratoBanco = tipoExtratoBanco; |
||
| 57 | } |
||
| 58 | |||
| 59 | public Date getDataLancamento() { |
||
| 60 | return dataLancamento; |
||
| 61 | } |
||
| 62 | public void setDataLancamento(Date dataLancamento) { |
||
| 63 | this.dataLancamento = dataLancamento; |
||
| 64 | } |
||
| 65 | |||
| 66 | public Double getValorTotal() { |
||
| 67 | return valorTotal; |
||
| 68 | } |
||
| 69 | public void setValorTotal(Double valorTotal) { |
||
| 70 | this.valorTotal = valorTotal; |
||
| 71 | } |
||
| 72 | |||
| 73 | |||
| 74 | public String getObservacao() { |
||
| 75 | return observacao; |
||
| 76 | } |
||
| 77 | public void setObservacao(String observacao) { |
||
| 78 | this.observacao = observacao; |
||
| 79 | } |
||
| 80 | |||
| 81 | } |