Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 106 | espaco | 1 | package br.com.ec.domain.dto; |
| 2 | |||
| 3 | import java.util.Date; |
||
| 4 | |||
| 5 | import br.com.ec.domain.model.ContaBancaria; |
||
| 6 | import br.com.ec.domain.model.Loja; |
||
| 7 | |||
| 8 | public class ParametrosReceberCaixaDTO { |
||
| 9 | |||
| 10 | private Loja loja; |
||
| 11 | private Date dataRecebimento; |
||
| 12 | private ContaBancaria contaBancariaRecebimento; |
||
| 13 | |||
| 14 | private Double valorRecebimentoEmDinheiro; |
||
| 15 | |||
| 16 | public Loja getLoja() { |
||
| 17 | return loja; |
||
| 18 | } |
||
| 19 | public void setLoja(Loja loja) { |
||
| 20 | this.loja = loja; |
||
| 21 | } |
||
| 22 | |||
| 23 | public Date getDataRecebimento() { |
||
| 24 | return dataRecebimento; |
||
| 25 | } |
||
| 26 | public void setDataRecebimento(Date dataRecebimento) { |
||
| 27 | this.dataRecebimento = dataRecebimento; |
||
| 28 | } |
||
| 29 | |||
| 30 | public ContaBancaria getContaBancariaRecebimento() { |
||
| 31 | return contaBancariaRecebimento; |
||
| 32 | } |
||
| 33 | public void setContaBancariaRecebimento(ContaBancaria contaBancariaRecebimento) { |
||
| 34 | this.contaBancariaRecebimento = contaBancariaRecebimento; |
||
| 35 | } |
||
| 36 | |||
| 37 | public Double getValorRecebimentoEmDinheiro() { |
||
| 38 | return valorRecebimentoEmDinheiro; |
||
| 39 | } |
||
| 40 | public void setValorRecebimentoEmDinheiro(Double valorRecebimentoEmDinheiro) { |
||
| 41 | this.valorRecebimentoEmDinheiro = valorRecebimentoEmDinheiro; |
||
| 42 | } |
||
| 43 | |||
| 44 | } |