Subversion Repositories Integrator Subversion

Rev

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="comanda.jasper")
public class FiltroComanda implements Serializable {

        private static final long serialVersionUID = 1L;
       
        private NotaFiscalDTO notaFiscal;
       
        public FiltroComanda() {}
       
        public FiltroComanda(NotaFiscalDTO notaFiscal) {
                this.notaFiscal = notaFiscal;
        }
       
        public NotaFiscalDTO getNotaFiscal() {
                return notaFiscal;
        }
        public void setNotaFiscal(NotaFiscalDTO notaFiscal) {
                this.notaFiscal = notaFiscal;
        }
       
}