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

br.com.swconsultoria.efd.icms.registros.blocoC.RegistroC195 Maven / Gradle / Ivy

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

import lombok.EqualsAndHashCode;

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

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

    private final String reg = "C195";
    private String cod_obs;
    private String txt_compl;
    private List registroC197;

    /**
     * @return the cod_obs
     */
    public String getCod_obs() {
        return cod_obs;
    }

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

    /**
     * @return the txt_compl
     */
    public String getTxt_compl() {
        return txt_compl;
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy