Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | package br.com.ec.domain.dto; |
| 2 | |||
| 3 | public class DashboardLogisticaDTO { |
||
| 4 | |||
| 5 | private LojaDTO lojaDTO; |
||
| 6 | |||
| 7 | private Integer quantidadeEstoqueTotal; |
||
| 8 | private Integer quantidadePendencias; |
||
| 9 | private Integer quantidadeTransferenciasParaReceberAbertas; |
||
| 10 | private Integer quantidadeContagensAbertas; |
||
| 11 | private Integer quantidadeContagensRealizadas; |
||
| 12 | |||
| 13 | private Integer quantidadeAlertaPendenciasAbertasPorMaiorPeriodo = 0; |
||
| 14 | private Integer quantidadeAlertaTransferenciasAbertasPorMaiorPeriodo = 0; |
||
| 15 | private Integer quantidadeAlertaModelosNaoFavoritos = 0; |
||
| 16 | |||
| 17 | public DashboardLogisticaDTO() {} |
||
| 18 | |||
| 19 | public LojaDTO getLojaDTO() { |
||
| 20 | return lojaDTO; |
||
| 21 | } |
||
| 22 | public void setLojaDTO(LojaDTO lojaDTO) { |
||
| 23 | this.lojaDTO = lojaDTO; |
||
| 24 | } |
||
| 25 | |||
| 26 | public Integer getQuantidadeEstoqueTotal() { |
||
| 27 | return quantidadeEstoqueTotal; |
||
| 28 | } |
||
| 29 | public void setQuantidadeEstoqueTotal(Integer quantidadeEstoqueTotal) { |
||
| 30 | this.quantidadeEstoqueTotal = quantidadeEstoqueTotal; |
||
| 31 | } |
||
| 32 | |||
| 33 | public Integer getQuantidadePendencias() { |
||
| 34 | return quantidadePendencias; |
||
| 35 | } |
||
| 36 | public void setQuantidadePendencias(Integer quantidadePendencias) { |
||
| 37 | this.quantidadePendencias = quantidadePendencias; |
||
| 38 | } |
||
| 39 | |||
| 40 | public Integer getQuantidadeTransferenciasParaReceberAbertas() { |
||
| 41 | return quantidadeTransferenciasParaReceberAbertas; |
||
| 42 | } |
||
| 43 | public void setQuantidadeTransferenciasParaReceberAbertas(Integer quantidadeTransferenciasParaReceberAbertas) { |
||
| 44 | this.quantidadeTransferenciasParaReceberAbertas = quantidadeTransferenciasParaReceberAbertas; |
||
| 45 | } |
||
| 46 | |||
| 47 | public Integer getQuantidadeContagensAbertas() { |
||
| 48 | return quantidadeContagensAbertas; |
||
| 49 | } |
||
| 50 | public void setQuantidadeContagensAbertas(Integer quantidadeContagensAbertas) { |
||
| 51 | this.quantidadeContagensAbertas = quantidadeContagensAbertas; |
||
| 52 | } |
||
| 53 | |||
| 54 | public Integer getQuantidadeContagensRealizadas() { |
||
| 55 | return quantidadeContagensRealizadas; |
||
| 56 | } |
||
| 57 | public void setQuantidadeContagensRealizadas(Integer quantidadeContagensRealizadas) { |
||
| 58 | this.quantidadeContagensRealizadas = quantidadeContagensRealizadas; |
||
| 59 | } |
||
| 60 | |||
| 61 | public Integer getQuantidadeAlertaPendenciasAbertasPorMaiorPeriodo() { |
||
| 62 | return quantidadeAlertaPendenciasAbertasPorMaiorPeriodo; |
||
| 63 | } |
||
| 64 | public void setQuantidadeAlertaPendenciasAbertasPorMaiorPeriodo(Integer quantidadeAlertaPendenciasAbertasPorMaiorPeriodo) { |
||
| 65 | this.quantidadeAlertaPendenciasAbertasPorMaiorPeriodo = quantidadeAlertaPendenciasAbertasPorMaiorPeriodo; |
||
| 66 | } |
||
| 67 | |||
| 68 | public Integer getQuantidadeAlertaTransferenciasAbertasPorMaiorPeriodo() { |
||
| 69 | return quantidadeAlertaTransferenciasAbertasPorMaiorPeriodo; |
||
| 70 | } |
||
| 71 | public void setQuantidadeAlertaTransferenciasAbertasPorMaiorPeriodo(Integer quantidadeAlertaTransferenciasAbertasPorMaiorPeriodo) { |
||
| 72 | this.quantidadeAlertaTransferenciasAbertasPorMaiorPeriodo = quantidadeAlertaTransferenciasAbertasPorMaiorPeriodo; |
||
| 73 | } |
||
| 74 | |||
| 75 | public Integer getQuantidadeAlertaModelosNaoFavoritos() { |
||
| 76 | return quantidadeAlertaModelosNaoFavoritos; |
||
| 77 | } |
||
| 78 | public void setQuantidadeAlertaModelosNaoFavoritos(Integer quantidadeAlertaModelosNaoFavoritos) { |
||
| 79 | this.quantidadeAlertaModelosNaoFavoritos = quantidadeAlertaModelosNaoFavoritos; |
||
| 80 | } |
||
| 81 | |||
| 82 | } |