All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fincatto.documentofiscal.cte200.classes.cte.CTInfoComponentesValor Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy