101 lines
982 B
Java
101 lines
982 B
Java
/**
|
|
* @(#) Taprescr.java
|
|
*/
|
|
package com.tarisan.data;
|
|
|
|
|
|
/**
|
|
*/
|
|
public class Taprescr
|
|
{
|
|
|
|
/**
|
|
*/
|
|
private int prescriptor;
|
|
|
|
/**
|
|
*/
|
|
private int medico;
|
|
|
|
/**
|
|
*/
|
|
private int ano;
|
|
|
|
/**
|
|
*/
|
|
private double importe;
|
|
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getPrescriptor()
|
|
{
|
|
return this.prescriptor;
|
|
}
|
|
|
|
/**
|
|
* @param prescriptor
|
|
* @return
|
|
*/
|
|
public void setPrescriptor(int prescriptor)
|
|
{
|
|
this.prescriptor = prescriptor;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getMedico()
|
|
{
|
|
return this.medico;
|
|
}
|
|
|
|
/**
|
|
* @param medico
|
|
* @return
|
|
*/
|
|
public void setMedico(int medico)
|
|
{
|
|
this.medico = medico;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getAno()
|
|
{
|
|
return this.ano;
|
|
}
|
|
|
|
/**
|
|
* @param ano
|
|
* @return
|
|
*/
|
|
public void setAno(int ano)
|
|
{
|
|
this.ano = ano;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public double getImporte()
|
|
{
|
|
return this.importe;
|
|
}
|
|
|
|
/**
|
|
* @param importe
|
|
* @return
|
|
*/
|
|
public void setImporte(double importe)
|
|
{
|
|
this.importe = importe;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|