Añado los fuentes de java
This commit is contained in:
@@ -0,0 +1,145 @@
|
||||
/**
|
||||
* @(#) Taclient.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taconaut
|
||||
{
|
||||
private String autorizacion;
|
||||
|
||||
private String autorizacionEncriptada;
|
||||
|
||||
private int especialidad;
|
||||
|
||||
private int medico;
|
||||
|
||||
private int acto;
|
||||
|
||||
private int cantidad;
|
||||
|
||||
private java.sql.Date fecha_modificacion;
|
||||
|
||||
private String informe;
|
||||
|
||||
private boolean from_gesigu;
|
||||
|
||||
private String tarjeta;
|
||||
private java.sql.Date fecha_creacion;
|
||||
|
||||
public void setAutorizacion(String autoriza)
|
||||
{
|
||||
this.autorizacion = autoriza;
|
||||
}
|
||||
|
||||
public String getAutorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
public void setEspecialidad(int espe)
|
||||
{
|
||||
this.especialidad = espe;
|
||||
}
|
||||
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
public void setMedico(int medic)
|
||||
{
|
||||
this.medico = medic;
|
||||
}
|
||||
|
||||
public void setTarjeta(String tar)
|
||||
{
|
||||
this.tarjeta = tar;
|
||||
}
|
||||
|
||||
public String getTarjeta()
|
||||
{
|
||||
return this.tarjeta;
|
||||
}
|
||||
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
public void setActo(int act)
|
||||
{
|
||||
this.acto = act;
|
||||
}
|
||||
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
public void setCantidad(int cuanto)
|
||||
{
|
||||
this.cantidad = cuanto;
|
||||
}
|
||||
|
||||
public int getCantidad()
|
||||
{
|
||||
return this.cantidad;
|
||||
}
|
||||
|
||||
public void setFechaModificacion(java.sql.Date fecMod)
|
||||
{
|
||||
this.fecha_modificacion = fecMod;
|
||||
}
|
||||
|
||||
public java.sql.Date getFechaModificacion()
|
||||
{
|
||||
return this.fecha_modificacion;
|
||||
}
|
||||
|
||||
public void setInforme(String inf)
|
||||
{
|
||||
this.informe = inf;
|
||||
}
|
||||
|
||||
public String getInforme()
|
||||
{
|
||||
return this.informe;
|
||||
}
|
||||
|
||||
public void setFromGesigu(boolean fromGes)
|
||||
{
|
||||
this.from_gesigu = fromGes;
|
||||
}
|
||||
|
||||
public boolean getFromGesigu()
|
||||
{
|
||||
return this.from_gesigu;
|
||||
}
|
||||
public void setFechaCreacion(java.sql.Date fecCre)
|
||||
{
|
||||
this.fecha_creacion = fecCre;
|
||||
}
|
||||
|
||||
public java.sql.Date getFechaCreacion()
|
||||
{
|
||||
return this.fecha_creacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the autorizacionEncriptada
|
||||
*/
|
||||
public String getAutorizacionEncriptada() {
|
||||
return autorizacionEncriptada;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizacionEncriptada the autorizacionEncriptada to set
|
||||
*/
|
||||
public void setAutorizacionEncriptada(String autorizacionEncriptada) {
|
||||
this.autorizacionEncriptada = autorizacionEncriptada;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user