Añado los fuentes de java
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user