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 | import java.util.List; |
||
| 5 | |||
| 6 | import br.com.ec.domain.model.Marca; |
||
| 7 | |||
| 8 | public class RankingAvariasDTO { |
||
| 9 | |||
| 10 | private Date dataInicial; |
||
| 11 | private Date dataFinal; |
||
| 12 | private Integer quantidadeLimiteConsulta; |
||
| 13 | private String tipoEstoqueAuditoria; |
||
| 14 | private Long sequencialLoja; |
||
| 15 | private String tipoProduto; |
||
| 16 | private Marca marca; |
||
| 17 | |||
| 18 | private List<RankingProdutoDTO> rankingProdutosAvarias; |
||
| 19 | private List<RankingProdutoDTO> rankingProdutosTroca; |
||
| 20 | private List<RankingProdutoDTO> rankingProdutosDevolucao; |
||
| 21 | |||
| 22 | public Date getDataInicial() { |
||
| 23 | return dataInicial; |
||
| 24 | } |
||
| 25 | public void setDataInicial(Date dataInicial) { |
||
| 26 | this.dataInicial = dataInicial; |
||
| 27 | } |
||
| 28 | |||
| 29 | public Date getDataFinal() { |
||
| 30 | return dataFinal; |
||
| 31 | } |
||
| 32 | public void setDataFinal(Date dataFinal) { |
||
| 33 | this.dataFinal = dataFinal; |
||
| 34 | } |
||
| 35 | |||
| 36 | public Integer getQuantidadeLimiteConsulta() { |
||
| 37 | return quantidadeLimiteConsulta; |
||
| 38 | } |
||
| 39 | public void setQuantidadeLimiteConsulta(Integer quantidadeLimiteConsulta) { |
||
| 40 | this.quantidadeLimiteConsulta = quantidadeLimiteConsulta; |
||
| 41 | } |
||
| 42 | |||
| 43 | public String getTipoEstoqueAuditoria() { |
||
| 44 | return tipoEstoqueAuditoria; |
||
| 45 | } |
||
| 46 | public void setTipoEstoqueAuditoria(String tipoEstoqueAuditoria) { |
||
| 47 | this.tipoEstoqueAuditoria = tipoEstoqueAuditoria; |
||
| 48 | } |
||
| 49 | |||
| 50 | public Long getSequencialLoja() { |
||
| 51 | return sequencialLoja; |
||
| 52 | } |
||
| 53 | public void setSequencialLoja(Long sequencialLoja) { |
||
| 54 | this.sequencialLoja = sequencialLoja; |
||
| 55 | } |
||
| 56 | |||
| 57 | public String getTipoProduto() { |
||
| 58 | return tipoProduto; |
||
| 59 | } |
||
| 60 | public void setTipoProduto(String tipoProduto) { |
||
| 61 | this.tipoProduto = tipoProduto; |
||
| 62 | } |
||
| 63 | |||
| 64 | public Marca getMarca() { |
||
| 65 | return marca; |
||
| 66 | } |
||
| 67 | public void setMarca(Marca marca) { |
||
| 68 | this.marca = marca; |
||
| 69 | } |
||
| 70 | |||
| 71 | public List<RankingProdutoDTO> getRankingProdutosAvarias() { |
||
| 72 | return rankingProdutosAvarias; |
||
| 73 | } |
||
| 74 | public void setRankingProdutosAvarias(List<RankingProdutoDTO> rankingProdutosAvarias) { |
||
| 75 | this.rankingProdutosAvarias = rankingProdutosAvarias; |
||
| 76 | } |
||
| 77 | |||
| 78 | public List<RankingProdutoDTO> getRankingProdutosTroca() { |
||
| 79 | return rankingProdutosTroca; |
||
| 80 | } |
||
| 81 | public void setRankingProdutosTroca(List<RankingProdutoDTO> rankingProdutosTroca) { |
||
| 82 | this.rankingProdutosTroca = rankingProdutosTroca; |
||
| 83 | } |
||
| 84 | |||
| 85 | public List<RankingProdutoDTO> getRankingProdutosDevolucao() { |
||
| 86 | return rankingProdutosDevolucao; |
||
| 87 | } |
||
| 88 | public void setRankingProdutosDevolucao(List<RankingProdutoDTO> rankingProdutosDevolucao) { |
||
| 89 | this.rankingProdutosDevolucao = rankingProdutosDevolucao; |
||
| 90 | } |
||
| 91 | |||
| 92 | } |