Añado los fuentes de java

This commit is contained in:
2025-06-09 13:37:06 +02:00
parent d6c990e5d5
commit a97a6350ee
226 changed files with 57246 additions and 0 deletions
+136
View File
@@ -0,0 +1,136 @@
/**
* @(#) Tadremed.java
*/
package com.tarisan.data;
/**
*/
public class Tadremed
{
/**
*/
private int medico;
/**
*/
private java.sql.Date fecha;
/**
*/
private double importe;
/**
*/
private double irpf;
/**
*/
private double importeTotal;
/**
*/
private double irpfTotal;
/**
* @return
*/
public int getMedico()
{
return this.medico;
}
/**
* @param medico
* @return
*/
public void setMedico(int medico)
{
this.medico = medico;
}
/**
* @return
*/
public java.sql.Date getFecha()
{
return this.fecha;
}
/**
* @param fecha
* @return
*/
public void setFecha(java.sql.Date fecha)
{
this.fecha = fecha;
}
/**
* @return
*/
public double getImporte()
{
return this.importe;
}
/**
* @param importe
* @return
*/
public void setImporte(double importe)
{
this.importe = importe;
}
/**
* @return
*/
public double getIrpf()
{
return this.irpf;
}
/**
* @param irpf
* @return
*/
public void setIrpf(double irpf)
{
this.irpf = irpf;
}
/**
* @return the importeTotal
*/
public double getImporteTotal() {
return importeTotal;
}
/**
* @param importeTotal the importeTotal to set
*/
public void setImporteTotal(double importeTotal) {
this.importeTotal = importeTotal;
}
/**
* @return the irpfTotal
*/
public double getIrpfTotal() {
return irpfTotal;
}
/**
* @param irpfTotal the irpfTotal to set
*/
public void setIrpfTotal(double irpfTotal) {
this.irpfTotal = irpfTotal;
}
}