137 lines
1.5 KiB
Java
137 lines
1.5 KiB
Java
/**
|
|
* @(#) 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;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|