Añado los fuentes de java
This commit is contained in:
@@ -0,0 +1,142 @@
|
||||
/**
|
||||
* @(#) Tareglog.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tareglog
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Timestamp fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Timestamp fechaPeticion;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String tabla;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String sentencia;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String observaciones;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Timestamp getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Timestamp fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Timestamp getFechaPeticion()
|
||||
{
|
||||
return this.fechaPeticion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fechaPeticion
|
||||
* @return
|
||||
*/
|
||||
public void setFechaPeticion(java.sql.Timestamp fechaPeticion)
|
||||
{
|
||||
this.fechaPeticion = fechaPeticion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getTabla()
|
||||
{
|
||||
return this.tabla;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param tabla
|
||||
* @return
|
||||
*/
|
||||
public void setTabla(String tabla)
|
||||
{
|
||||
this.tabla = tabla;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getSentencia()
|
||||
{
|
||||
return this.sentencia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param sentencia
|
||||
* @return
|
||||
*/
|
||||
public void setSentencia(String sentencia)
|
||||
{
|
||||
this.sentencia = sentencia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getObservaciones()
|
||||
{
|
||||
return this.observaciones;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param observaciones
|
||||
* @return
|
||||
*/
|
||||
public void setObservaciones(String observaciones)
|
||||
{
|
||||
this.observaciones = observaciones;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user