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

com.fincatto.documentofiscal.cte300.classes.evento.gtv.CTeInformacaoEspecieGtv Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
package com.fincatto.documentofiscal.cte300.classes.evento.gtv;

import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte300.classes.CTTipoEspecieGtv;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import org.simpleframework.xml.Element;

import java.math.BigDecimal;

public class CTeInformacaoEspecieGtv extends DFBase {
    private static final long serialVersionUID = 229144141854691208L;
    
    @Element(name = "tpEspecie")
    private CTTipoEspecieGtv tipoEspecie;

    @Element(name = "vEspecie", required = false)
    private String valorEspecie;

    public CTTipoEspecieGtv getTipoEspecie() {
        return tipoEspecie;
    }

    public void setTipoEspecie(CTTipoEspecieGtv tipoEspecie) {
        this.tipoEspecie = tipoEspecie;
    }

    public String getValorEspecie() {
        return valorEspecie;
    }

    public void setValorEspecie(BigDecimal valorEspecie) {
        this.valorEspecie = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorEspecie, "Valor Especie");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy