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

it.cnr.contab.config00.bulk.FirmeBase Maven / Gradle / Ivy

/*
 * Copyright (C) 2019  Consiglio Nazionale delle Ricerche
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Affero General Public License as
 *     published by the Free Software Foundation, either version 3 of the
 *     License, or (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Affero General Public License for more details.
 *
 *     You should have received a copy of the GNU Affero General Public License
 *     along with this program.  If not, see .
 */

package it.cnr.contab.config00.bulk;

import it.cnr.jada.persistency.Keyed;

/**
 * Creation date: (24/02/2005)
 * @author Tilde
 * @version 1.0
 */
public class FirmeBase extends FirmeKey implements Keyed {
	// FIRMA1 VARCHAR(50) NULL
	private String firma1;
	//	FIRMA2 VARCHAR(50) NULL
	 private String firma2;
	//	FIRMA3 VARCHAR(50) NULL
	 private String firma3;
	//	FIRMA4 VARCHAR(50) NULL
	 private String firma4;
	
	public FirmeBase() {
		super();
	}
	public FirmeBase(java.lang.Integer esercizio, String tipo) {
		super(esercizio,tipo);
	}

	/**
	 * @return
	 */
	public String getFirma1() {
		return firma1;
	}

	/**
	 * @return
	 */
	public String getFirma2() {
		return firma2;
	}

	/**
	 * @return
	 */
	public String getFirma3() {
		return firma3;
	}

	/**
	 * @return
	 */
	public String getFirma4() {
		return firma4;
	}

	/**
	 * @param string
	 */
	public void setFirma1(String string) {
		firma1 = string;
	}

	/**
	 * @param string
	 */
	public void setFirma2(String string) {
		firma2 = string;
	}

	/**
	 * @param string
	 */
	public void setFirma3(String string) {
		firma3 = string;
	}

	/**
	 * @param string
	 */
	public void setFirma4(String string) {
		firma4 = string;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy