Rev 587 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 582 | blopes | 1 | package br.com.ec.domain.dto; |
| 2 | |||
| 3 | import java.util.List; |
||
| 4 | |||
| 5 | import br.com.ec.domain.model.tipos.TipoProduto; |
||
| 6 | |||
| 7 | public class AlertasGeralDTO { |
||
| 8 | |||
| 588 | blopes | 9 | // ALERTAS COMPRAS (GERAL) |
| 10 | private AlertasComprasDTO alertasComprasDTO; |
||
| 582 | blopes | 11 | |
| 12 | // ALERTAS COMPRAS (CAPAS) |
||
| 588 | blopes | 13 | private AlertasLogisticaComprasDTO alertasComprasCapasDTO; |
| 587 | blopes | 14 | |
| 588 | blopes | 15 | // ALERTAS LOGÍSTICA (CAPAS) |
| 16 | private AlertasLogisticaComprasDTO alertasLogisticaCapasDTO; |
||
| 582 | blopes | 17 | |
| 18 | // ALERTAS LOGÍSTICA (EXCETO CAPAS) |
||
| 19 | |||
| 20 | // ALERTAS COMERCIAL |
||
| 21 | |||
| 22 | // ALERTAS GESTAO |
||
| 23 | |||
| 588 | blopes | 24 | private Integer quantidadeDiasVendas = 0; |
| 25 | private Integer tempoDeEstoqueParaAlerta = 0; |
||
| 26 | private Boolean adicionarModelosFavoritosSemVendas; |
||
| 27 | |||
| 28 | private List<TipoProduto> tiposProdutoSelecionados; |
||
| 29 | |||
| 583 | blopes | 30 | public AlertasGeralDTO() { |
| 31 | } |
||
| 582 | blopes | 32 | |
| 588 | blopes | 33 | public AlertasComprasDTO getAlertasComprasDTO() { |
| 34 | return alertasComprasDTO; |
||
| 35 | } |
||
| 36 | public void setAlertasComprasDTO(AlertasComprasDTO alertasComprasDTO) { |
||
| 37 | this.alertasComprasDTO = alertasComprasDTO; |
||
| 38 | } |
||
| 39 | |||
| 40 | public AlertasLogisticaComprasDTO getAlertasComprasCapasDTO() { |
||
| 41 | return alertasComprasCapasDTO; |
||
| 42 | } |
||
| 43 | public void setAlertasComprasCapasDTO(AlertasLogisticaComprasDTO alertasComprasCapasDTO) { |
||
| 44 | this.alertasComprasCapasDTO = alertasComprasCapasDTO; |
||
| 45 | } |
||
| 46 | |||
| 47 | public AlertasLogisticaComprasDTO getAlertasLogisticaCapasDTO() { |
||
| 48 | return alertasLogisticaCapasDTO; |
||
| 49 | } |
||
| 50 | public void setAlertasLogisticaCapasDTO(AlertasLogisticaComprasDTO alertasLogisticaCapasDTO) { |
||
| 51 | this.alertasLogisticaCapasDTO = alertasLogisticaCapasDTO; |
||
| 52 | } |
||
| 53 | |||
| 582 | blopes | 54 | public Integer getQuantidadeDiasVendas() { |
| 55 | return quantidadeDiasVendas; |
||
| 56 | } |
||
| 57 | public void setQuantidadeDiasVendas(Integer quantidadeDiasVendas) { |
||
| 58 | this.quantidadeDiasVendas = quantidadeDiasVendas; |
||
| 59 | } |
||
| 60 | |||
| 61 | public Integer getTempoDeEstoqueParaAlerta() { |
||
| 62 | return tempoDeEstoqueParaAlerta; |
||
| 63 | } |
||
| 64 | public void setTempoDeEstoqueParaAlerta(Integer tempoDeEstoqueParaAlerta) { |
||
| 65 | this.tempoDeEstoqueParaAlerta = tempoDeEstoqueParaAlerta; |
||
| 66 | } |
||
| 67 | |||
| 68 | public Boolean getAdicionarModelosFavoritosSemVendas() { |
||
| 69 | return adicionarModelosFavoritosSemVendas; |
||
| 70 | } |
||
| 71 | public void setAdicionarModelosFavoritosSemVendas(Boolean adicionarModelosFavoritosSemVendas) { |
||
| 72 | this.adicionarModelosFavoritosSemVendas = adicionarModelosFavoritosSemVendas; |
||
| 73 | } |
||
| 74 | |||
| 75 | public List<TipoProduto> getTiposProdutoSelecionados() { |
||
| 76 | return tiposProdutoSelecionados; |
||
| 77 | } |
||
| 78 | public void setTiposProdutoSelecionados(List<TipoProduto> tiposProdutoSelecionados) { |
||
| 79 | this.tiposProdutoSelecionados = tiposProdutoSelecionados; |
||
| 80 | } |
||
| 81 | |||
| 585 | blopes | 82 | /************************************************************/ |
| 83 | |||
| 582 | blopes | 84 | } |