com.fincatto.documentofiscal.cte200.classes.cte.CTInfoDocumentoNFUnidadeCargaLacre Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.cte200.classes.cte;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
import com.fincatto.documentofiscal.DFBase;
@Root(name = "lacUnidCarga")
public class CTInfoDocumentoNFUnidadeCargaLacre extends DFBase {
private static final long serialVersionUID = -5337777492540262449L;
@Element(name = "nrLacre")
private String numeroLacre;
public String getNumeroLacre() {
return this.numeroLacre;
}
public void setNumeroLacre(final String numeroLacre) {
this.numeroLacre = numeroLacre;
}
}