Añado los fuentes de java
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
/**
|
||||
* @(#) 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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user