![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.cte300.classes.nota.CTeNotaInfoCTeNormalInfoModalAquaviarioConteinerInfoDocumentos 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.cte300.classes.nota;
import com.fincatto.documentofiscal.DFBase;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import java.util.List;
/**
* @author Caio
* @info Informações dos documentos dos conteiners
*/
@Root(name = "infDoc")
@Namespace(reference = "http://www.portalfiscal.inf.br/cte")
public class CTeNotaInfoCTeNormalInfoModalAquaviarioConteinerInfoDocumentos extends DFBase {
private static final long serialVersionUID = 8869859558328512575L;
@ElementList(name = "infNF", inline = true)
private List infoDocumentosNF;
@ElementList(name = "infNFe", inline = true)
private List infoDocumentosNFe;
public CTeNotaInfoCTeNormalInfoModalAquaviarioConteinerInfoDocumentos() {
this.infoDocumentosNF = null;
this.infoDocumentosNFe = null;
}
public List getInfoDocumentosNF() {
return this.infoDocumentosNF;
}
/**
* Informações das NF
*/
public void setInfoDocumentosNF(final List infoDocumentosNF) {
this.infoDocumentosNF = infoDocumentosNF;
}
public List getInfoDocumentosNFe() {
return this.infoDocumentosNFe;
}
/**
* Informações das NFe
*/
public void setInfoDocumentosNFe(final List infoDocumentosNFe) {
this.infoDocumentosNFe = infoDocumentosNFe;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy