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

br.com.swconsultoria.efd.icms.registros.blocoD.RegistroD350 Maven / Gradle / Ivy

The newest version!
/**
 *
 */
package br.com.swconsultoria.efd.icms.registros.blocoD;

import lombok.EqualsAndHashCode;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Samuel Oliveira
 */
@EqualsAndHashCode
public class RegistroD350 {

    private final String reg = "D350";
    private String cod_mod;
    private String ecf_mod;
    private String ecf_fab;
    private String ecf_cx;
    private List registroD355;

    /**
     * @return the cod_mod
     */
    public String getCod_mod() {
        return cod_mod;
    }

    /**
     * @param cod_mod the cod_mod to set
     */
    public void setCod_mod(String cod_mod) {
        this.cod_mod = cod_mod;
    }

    /**
     * @return the ecf_mod
     */
    public String getEcf_mod() {
        return ecf_mod;
    }

    /**
     * @param ecf_mod the ecf_mod to set
     */
    public void setEcf_mod(String ecf_mod) {
        this.ecf_mod = ecf_mod;
    }

    /**
     * @return the ecf_fab
     */
    public String getEcf_fab() {
        return ecf_fab;
    }

    /**
     * @param ecf_fab the ecf_fab to set
     */
    public void setEcf_fab(String ecf_fab) {
        this.ecf_fab = ecf_fab;
    }

    /**
     * @return the ecf_cx
     */
    public String getEcf_cx() {
        return ecf_cx;
    }

    /**
     * @param ecf_cx the ecf_cx to set
     */
    public void setEcf_cx(String ecf_cx) {
        this.ecf_cx = ecf_cx;
    }

    /**
     * @return the reg
     */
    public String getReg() {
        return reg;
    }

    /**
     * @return the registroD355
     */
    public List getRegistroD355() {
        if (registroD355 == null) {
            registroD355 = new ArrayList();
        }
        return registroD355;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy