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

br.com.swconsultoria.efd.icms.registros.blocoK.RegistroK300 Maven / Gradle / Ivy

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

import lombok.EqualsAndHashCode;

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

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

    private final String reg = "K300";
    private String dt_prod;
    private List registroK301;
    private List registroK302;

    public String getDt_prod() {
        return dt_prod;
    }

    public void setDt_prod(String dt_prod) {
        this.dt_prod = dt_prod;
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy