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

com.fincatto.documentofiscal.cte400.classes.nota.CTeNotaInfoValorPrestacaoServicoComponentesValorPrestacao Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
package com.fincatto.documentofiscal.cte400.classes.nota;

import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte.CTeConfig;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;

import java.math.BigDecimal;

/**
 * Componentes do Valor da Prestação
 */

@Root(name = "Comp")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeNotaInfoValorPrestacaoServicoComponentesValorPrestacao extends DFBase {
    private static final long serialVersionUID = -3210887584942575997L;

    @Element(name = "xNome")
    private String nomeComponente;
    
    @Element(name = "vComp")
    private String valorComponente;

    public String getNomeComponente() {
        return this.nomeComponente;
    }

    /**
     * Nome do componente
* Exemplos: FRETE PESO, FRETE VALOR, SEC/CAT, ADEME, AGENDAMENTO, etc */ public void setNomeComponente(final String nomeComponente) { DFStringValidador.tamanho15(nomeComponente, "Nome do componente"); this.nomeComponente = nomeComponente; } public String getValorComponente() { return this.valorComponente; } /** * Valor do componente */ public void setValorComponente(final BigDecimal valorComponente) { this.valorComponente = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorComponente, "Valor do componente"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy