Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
package br.com.ec.domain.dto;
import java.io.Serializable;
import br.com.ec.domain.dto.nfce.NotaFiscalDTO;
import br.edu.cesmac.relatorio.interfaces.ArquivoJasper;
import br.edu.cesmac.relatorio.interfaces.Relatorio;
@Relatorio
@ArquivoJasper
(nome=
"nfce.jasper")
public class FiltroNfce
implements Serializable {
private static final long serialVersionUID = 1L
;
private NotaFiscalDTO notaFiscal
;
public FiltroNfce
() {}
public FiltroNfce
(NotaFiscalDTO notaFiscal
) {
this.
notaFiscal = notaFiscal
;
}
public NotaFiscalDTO getNotaFiscal
() {
return notaFiscal
;
}
public void setNotaFiscal
(NotaFiscalDTO notaFiscal
) {
this.
notaFiscal = notaFiscal
;
}
}