Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | package br.gov.al.saude.scs.model.dto; |
| 2 | |||
| 3 | import java.io.Serializable; |
||
| 4 | import java.util.List; |
||
| 5 | |||
| 6 | import br.gov.al.saude.scs.model.view.ProcessoOrcamentoView; |
||
| 7 | |||
| 8 | public class DespesasTurmaDTO implements Serializable { |
||
| 9 | |||
| 10 | private static final long serialVersionUID = 1L; |
||
| 11 | |||
| 12 | private ProcessoIntegraDTO processoIntegra; |
||
| 13 | private List<ProcessoOrcamentoView> elementosDespesa; |
||
| 14 | |||
| 15 | public ProcessoIntegraDTO getProcessoIntegra() { |
||
| 16 | return processoIntegra; |
||
| 17 | } |
||
| 18 | |||
| 19 | public void setProcessoIntegra(ProcessoIntegraDTO processoIntegra) { |
||
| 20 | this.processoIntegra = processoIntegra; |
||
| 21 | } |
||
| 22 | |||
| 23 | public List<ProcessoOrcamentoView> getElementosDespesa() { |
||
| 24 | return elementosDespesa; |
||
| 25 | } |
||
| 26 | |||
| 27 | public void setElementosDespesa(List<ProcessoOrcamentoView> elementosDespesa) { |
||
| 28 | this.elementosDespesa = elementosDespesa; |
||
| 29 | } |
||
| 30 | |||
| 31 | } |