Añado los fuentes de java
This commit is contained in:
@@ -0,0 +1,425 @@
|
||||
/**
|
||||
* @(#) Tamedico.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tamedico
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int tarifa;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String password;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String nombreCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String direccionCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int cpCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String telefonoCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String poblacionCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String colegiadoCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String especialidadCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int param1;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int param2;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fechaModifClave;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fechaUltimoAcceso;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String bloqueoClave;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int num_deter;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String emailCab;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getApellidos()
|
||||
{
|
||||
return this.apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param apellidos
|
||||
* @return
|
||||
*/
|
||||
public void setApellidos(String apellidos)
|
||||
{
|
||||
this.apellidos = apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getNombre()
|
||||
{
|
||||
return this.nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nombre
|
||||
* @return
|
||||
*/
|
||||
public void setNombre(String nombre)
|
||||
{
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getTarifa()
|
||||
{
|
||||
return this.tarifa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param tarifa
|
||||
* @return
|
||||
*/
|
||||
public void setTarifa(int tarifa)
|
||||
{
|
||||
this.tarifa = tarifa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getPassword()
|
||||
{
|
||||
return this.password;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param password
|
||||
* @return
|
||||
*/
|
||||
public void setPassword(String password)
|
||||
{
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getNombreCab()
|
||||
{
|
||||
return this.nombreCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nombreCab
|
||||
* @return
|
||||
*/
|
||||
public void setNombreCab(String nombreCab)
|
||||
{
|
||||
this.nombreCab = nombreCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDireccionCab()
|
||||
{
|
||||
return this.direccionCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param direccionCab
|
||||
* @return
|
||||
*/
|
||||
public void setDireccionCab(String direccionCab)
|
||||
{
|
||||
this.direccionCab = direccionCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getCpCab()
|
||||
{
|
||||
return this.cpCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param cpCab
|
||||
* @return
|
||||
*/
|
||||
public void setCpCab(int cpCab)
|
||||
{
|
||||
this.cpCab = cpCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getTelefonoCab()
|
||||
{
|
||||
return this.telefonoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param telefonoCab
|
||||
* @return
|
||||
*/
|
||||
public void setTelefonoCab(String telefonoCab)
|
||||
{
|
||||
this.telefonoCab = telefonoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getPoblacionCab()
|
||||
{
|
||||
return this.poblacionCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poblacionCab
|
||||
* @return
|
||||
*/
|
||||
public void setPoblacionCab(String poblacionCab)
|
||||
{
|
||||
this.poblacionCab = poblacionCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getColegiadoCab()
|
||||
{
|
||||
return this.colegiadoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colegiadoCab
|
||||
* @return
|
||||
*/
|
||||
public void setColegiadoCab(String colegiadoCab)
|
||||
{
|
||||
this.colegiadoCab = colegiadoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getEspecialidadCab()
|
||||
{
|
||||
return this.especialidadCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidadCab
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidadCab(String especialidadCab)
|
||||
{
|
||||
this.especialidadCab = especialidadCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getParam1()
|
||||
{
|
||||
return this.param1;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param param1
|
||||
* @return
|
||||
*/
|
||||
public void setParam1(int param1)
|
||||
{
|
||||
this.param1 = param1;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getParam2()
|
||||
{
|
||||
return this.param2;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param param2
|
||||
* @return
|
||||
*/
|
||||
public void setParam2(int param2)
|
||||
{
|
||||
this.param2 = param2;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFechaModifClave()
|
||||
{
|
||||
return this.fechaModifClave;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fechaModifClave
|
||||
* @return
|
||||
*/
|
||||
public void setFechaModifClave(java.sql.Date fechaModifClave)
|
||||
{
|
||||
this.fechaModifClave = fechaModifClave;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFechaUltimoAcceso()
|
||||
{
|
||||
return this.fechaUltimoAcceso;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fechaUltimoAcceso
|
||||
* @return
|
||||
*/
|
||||
public void setFechaUltimoAcceso(java.sql.Date fechaUltimoAcceso)
|
||||
{
|
||||
this.fechaUltimoAcceso = fechaUltimoAcceso;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getBloqueoClave()
|
||||
{
|
||||
return this.bloqueoClave;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param bloqueoClave
|
||||
* @return
|
||||
*/
|
||||
public void setBloqueoClave(String bloqueoClave)
|
||||
{
|
||||
this.bloqueoClave = bloqueoClave;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the num_deter
|
||||
*/
|
||||
public int getNum_deter() {
|
||||
return num_deter;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param num_deter the num_deter to set
|
||||
*/
|
||||
public void setNum_deter(int num_deter) {
|
||||
this.num_deter = num_deter;
|
||||
}
|
||||
|
||||
public String getEmailCab() {
|
||||
return emailCab;
|
||||
}
|
||||
|
||||
public void setEmailCab(String emailCab) {
|
||||
this.emailCab = emailCab;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user