com.fincatto.documentofiscal.cte200.classes.cte.CTInfoComponentesValor 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 java.math.BigDecimal;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
import com.fincatto.documentofiscal.DFBase;
@Root(name = "Comp")
public class CTInfoComponentesValor extends DFBase {
private static final long serialVersionUID = -4637453857441149321L;
@Element(name = "xNome")
private String xNome;
@Element(name = "vComp")
private BigDecimal vComp;
public String getxNome() {
return this.xNome;
}
public void setxNome(final String xNome) {
this.xNome = xNome;
}
public BigDecimal getvComp() {
return this.vComp;
}
public void setvComp(final BigDecimal vComp) {
this.vComp = vComp;
}
}