Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 106 | espaco | 1 | package br.com.ec.domain.dto.anvisa; |
| 2 | |||
| 3 | import java.util.List; |
||
| 4 | |||
| 5 | import javax.xml.bind.annotation.XmlType; |
||
| 6 | |||
| 7 | @XmlType |
||
| 8 | public class EntradaMedicamentos { |
||
| 9 | |||
| 10 | private NotaFiscalEntradaMedicamento notaFiscalEntradaMedicamento; |
||
| 11 | private List<MedicamentoEntrada> medicamentoEntrada; |
||
| 12 | |||
| 13 | public NotaFiscalEntradaMedicamento getNotaFiscalEntradaMedicamento() { |
||
| 14 | return notaFiscalEntradaMedicamento; |
||
| 15 | } |
||
| 16 | public void setNotaFiscalEntradaMedicamento(NotaFiscalEntradaMedicamento notaFiscalEntradaMedicamento) { |
||
| 17 | this.notaFiscalEntradaMedicamento = notaFiscalEntradaMedicamento; |
||
| 18 | } |
||
| 19 | |||
| 20 | public List<MedicamentoEntrada> getMedicamentoEntrada() { |
||
| 21 | return medicamentoEntrada; |
||
| 22 | } |
||
| 23 | public void setMedicamentoEntrada(List<MedicamentoEntrada> medicamentoEntrada) { |
||
| 24 | this.medicamentoEntrada = medicamentoEntrada; |
||
| 25 | } |
||
| 26 | |||
| 27 | } |