com.fincatto.documentofiscal.cte.classes.distribuicao.CTDistribuicaoConsultaNSU 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.cte.classes.distribuicao;
import com.fincatto.documentofiscal.DFBase;
import org.simpleframework.xml.Element;
public class CTDistribuicaoConsultaNSU extends DFBase {
private static final long serialVersionUID = -582191692175285331L;
@Element(name = "NSU")
private String nsu;
public String getNsu() {
return this.nsu;
}
public CTDistribuicaoConsultaNSU setNsu(final String nsu) {
this.nsu = nsu;
return this;
}
}