Añado los fuentes de java
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
/**
|
||||
* @(#) Hce_doc_ext_ap.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
/**
|
||||
* Objeto de la tabla Hce_doc_ext_ap para mostrar las anatomías patológicas
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>
|
||||
* @version 1.0, 07/09/2018
|
||||
*/
|
||||
public class Hce_doc_ext_ap
|
||||
{
|
||||
/**
|
||||
*/
|
||||
private String nombre_doc;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getNombre_doc()
|
||||
{
|
||||
if (this.nombre_doc==null)
|
||||
return "";
|
||||
else
|
||||
return this.nombre_doc;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nombre
|
||||
* @return
|
||||
*/
|
||||
public void setNombre_doc(String nombre_doc)
|
||||
{
|
||||
this.nombre_doc = nombre_doc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,222 @@
|
||||
/**
|
||||
* @(#) Paciente.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import com.tarisan.util.Utilidades;
|
||||
import java.io.Serializable;
|
||||
import java.util.Calendar;
|
||||
|
||||
|
||||
/**
|
||||
* Datos del Paciente obtenidos tras el paso de la tarjeta del mismo.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class Paciente implements Serializable
|
||||
{
|
||||
|
||||
/**
|
||||
* Tarjeta del paciente
|
||||
*/
|
||||
private Tarjeta tarjeta;
|
||||
|
||||
/**
|
||||
* Nombre y apellidos del paciente
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
* Autorización del beneficiario
|
||||
*/
|
||||
private String autorizado;
|
||||
|
||||
/**
|
||||
* El sexo del paciente para comprobar compatibilidad con la especialidad
|
||||
*/
|
||||
private String sexo;
|
||||
|
||||
/**
|
||||
* La edad del paciente, para que sólo los niños vayan a pediatría
|
||||
*/
|
||||
private int edad;
|
||||
|
||||
/**
|
||||
* Si el paciente es desplazado o propio
|
||||
*/
|
||||
private String entidad_chipcard;
|
||||
|
||||
/**
|
||||
* Si se conecta un médico de cabecera y el paciente no es igualado suyo ponemos esto a false para que no pueda hacer nada.
|
||||
*/
|
||||
private boolean noesiguala_inactivar;
|
||||
|
||||
/**
|
||||
* Vamos a guardar aquí el "troquelado" de la tarjeta
|
||||
*/
|
||||
private String identificador;
|
||||
|
||||
/**
|
||||
* Vamos a guardar la fecha de baja
|
||||
*/
|
||||
private Calendar fechabaja;
|
||||
|
||||
|
||||
public boolean get_noesiguala_inactivar()
|
||||
{
|
||||
return this.noesiguala_inactivar;
|
||||
}
|
||||
|
||||
public void set_noesiguala_inactivar(boolean activo)
|
||||
{
|
||||
this.noesiguala_inactivar = activo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public Tarjeta getTarjeta()
|
||||
{
|
||||
return this.tarjeta;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param tarjeta
|
||||
* @return
|
||||
*/
|
||||
public void setTarjeta(Tarjeta tarjeta)
|
||||
{
|
||||
this.tarjeta = tarjeta;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getNombre()
|
||||
{
|
||||
return this.nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nombre
|
||||
* @return
|
||||
*/
|
||||
public void setNombre(String nombre)
|
||||
{
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getAutorizado()
|
||||
{
|
||||
return this.autorizado;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizado
|
||||
* @return
|
||||
*/
|
||||
public void setAutorizado(String autorizado)
|
||||
{
|
||||
this.autorizado = autorizado;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return Devuelve un string con el Sexo (H o M)
|
||||
*/
|
||||
public String getSexo()
|
||||
{
|
||||
return this.sexo;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param sexo Asigna el valor H o M al sexo del paciente
|
||||
*/
|
||||
public void setSexo(String sexo)
|
||||
{
|
||||
this.sexo = sexo;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return Devuelve la edad del paciente
|
||||
*/
|
||||
public int getEdad()
|
||||
{
|
||||
return this.edad;
|
||||
}
|
||||
|
||||
/**
|
||||
* Asigna el valor de la edad al paciente
|
||||
* @param edad
|
||||
*/
|
||||
public void setEdad(int edad)
|
||||
{
|
||||
this.edad = edad;
|
||||
}
|
||||
|
||||
public void setDesplazado(String entidad)
|
||||
{
|
||||
this.entidad_chipcard = entidad;
|
||||
}
|
||||
|
||||
public String getDesplazado()
|
||||
{
|
||||
return this.entidad_chipcard;
|
||||
}
|
||||
|
||||
public String getIdentificador()
|
||||
{
|
||||
return this.identificador;
|
||||
}
|
||||
|
||||
public void setIdentificador(String troquelado)
|
||||
{
|
||||
this.identificador = troquelado;
|
||||
}
|
||||
|
||||
public Calendar getFechaBaja()
|
||||
{
|
||||
return this.fechabaja;
|
||||
}
|
||||
|
||||
public void setFechaBaja(Calendar fecbaj)
|
||||
{
|
||||
this.fechabaja = fecbaj;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Descripción de la instancia de la clase.
|
||||
* Devuelve, en forma de String, los datos del paciente leídos de su tarjeta.
|
||||
* @return los datos del paciente
|
||||
*/
|
||||
public String toString()
|
||||
{
|
||||
StringBuffer cadena = new StringBuffer();
|
||||
|
||||
cadena.append("Paciente: ");
|
||||
cadena.append(nombre);
|
||||
cadena.append(" (");
|
||||
cadena.append(tarjeta.getColectivo());
|
||||
cadena.append(" ");
|
||||
cadena.append(Utilidades.formatearEntero(tarjeta.getPoliza(), 12, 0));
|
||||
cadena.append(" ");
|
||||
cadena.append(Utilidades.formatearEntero(tarjeta.getBeneficiario(), 2));
|
||||
cadena.append(")");
|
||||
|
||||
return cadena.toString();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,121 @@
|
||||
/**
|
||||
* @(#)
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import java.sql.Date;
|
||||
|
||||
public class RespuestaChipcard
|
||||
{
|
||||
private int terminal;
|
||||
private String tarjeta;
|
||||
private String respuesta;
|
||||
private String mensaje;
|
||||
private int talon_chipcard;
|
||||
private int especialidad;
|
||||
private int acto;
|
||||
private Date fecha_hora;
|
||||
private boolean error;
|
||||
private String xml;
|
||||
|
||||
public boolean get_error()
|
||||
{
|
||||
return this.error;
|
||||
}
|
||||
|
||||
public void set_error(boolean resul)
|
||||
{
|
||||
this.error = resul;
|
||||
}
|
||||
|
||||
public int get_terminal()
|
||||
{
|
||||
return this.terminal;
|
||||
}
|
||||
|
||||
public void set_terminal(int term)
|
||||
{
|
||||
this.terminal = term;
|
||||
}
|
||||
|
||||
public String get_tarjeta()
|
||||
{
|
||||
return this.tarjeta;
|
||||
}
|
||||
|
||||
public void set_tarjeta(String tar)
|
||||
{
|
||||
this.tarjeta = tar;
|
||||
}
|
||||
|
||||
public String get_respuesta()
|
||||
{
|
||||
return this.respuesta;
|
||||
}
|
||||
|
||||
public void set_respuesta(String res)
|
||||
{
|
||||
this.respuesta = res;
|
||||
}
|
||||
|
||||
public String get_mensaje()
|
||||
{
|
||||
return this.mensaje;
|
||||
}
|
||||
|
||||
public void set_mensaje(String mens)
|
||||
{
|
||||
this.mensaje = mens;
|
||||
}
|
||||
|
||||
public int get_talon_chipcard()
|
||||
{
|
||||
return this.talon_chipcard;
|
||||
}
|
||||
|
||||
public void set_talon_chipcard(int talon)
|
||||
{
|
||||
this.talon_chipcard = talon;
|
||||
}
|
||||
|
||||
public int get_especialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
public void set_especialidad(int espe)
|
||||
{
|
||||
this.especialidad = espe;
|
||||
}
|
||||
|
||||
public int get_acto()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
public void set_acto(int act)
|
||||
{
|
||||
this.acto = act;
|
||||
}
|
||||
|
||||
public Date get_fecha_hora()
|
||||
{
|
||||
return this.fecha_hora;
|
||||
}
|
||||
|
||||
public void set_fecha_hora(Date fec_hor)
|
||||
{
|
||||
this.fecha_hora = fec_hor;
|
||||
}
|
||||
|
||||
public void set_xml(String xmlcompleto)
|
||||
{
|
||||
this.xml = xmlcompleto;
|
||||
}
|
||||
|
||||
public String get_xml()
|
||||
{
|
||||
return this.xml;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
public class TTFranquiciasDentales {
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int entidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private long colectivo;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int anio;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int precio;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad() {
|
||||
return especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad) {
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo() {
|
||||
return acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto) {
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEntidad() {
|
||||
return entidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param entidad
|
||||
* @return
|
||||
*/
|
||||
public void setEntidad(int entidad) {
|
||||
this.entidad = entidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public long getColectivo() {
|
||||
return colectivo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colectivo
|
||||
* @return
|
||||
*/
|
||||
public void setColectivo(long colectivo) {
|
||||
this.colectivo = colectivo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getAnio() {
|
||||
return anio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param anio
|
||||
* @return
|
||||
*/
|
||||
public void setAnio(int anio) {
|
||||
this.anio = anio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getPrecio() {
|
||||
return precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param precio
|
||||
* @return
|
||||
*/
|
||||
public void setPrecio(int precio) {
|
||||
this.precio = precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcion() {
|
||||
return descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcion(String descripcion) {
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,361 @@
|
||||
/**
|
||||
* @(#) Taclient.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
import java.sql.Date;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class TTMovaut{
|
||||
|
||||
private long autorizacion;
|
||||
|
||||
private int medico;
|
||||
|
||||
private int especialidad1;
|
||||
|
||||
private int acto1;
|
||||
|
||||
private int entidad;
|
||||
|
||||
private long colectivo;
|
||||
|
||||
private long poliza;
|
||||
|
||||
private int orden;
|
||||
|
||||
private Date fecha_autorizacion;
|
||||
|
||||
private int prescriptor;
|
||||
|
||||
private String provincia;
|
||||
|
||||
private int cantidad1;
|
||||
|
||||
private String descripcion1;
|
||||
|
||||
private Date fecha_validez;
|
||||
|
||||
private String nombre_completo;
|
||||
|
||||
private int especialidad2;
|
||||
|
||||
private int acto2;
|
||||
|
||||
private int cantidad2;
|
||||
|
||||
private String descripcion2;
|
||||
|
||||
private int especialidad3;
|
||||
|
||||
private int acto3;
|
||||
|
||||
private int cantidad3;
|
||||
|
||||
private String descripcion3;
|
||||
|
||||
private int especialidad4;
|
||||
|
||||
private int acto4;
|
||||
|
||||
private int cantidad4;
|
||||
|
||||
private String descripcion4;
|
||||
|
||||
private String texto;
|
||||
|
||||
private String usuario;
|
||||
|
||||
|
||||
public long get_autorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
public void set_autorizacion(long autor)
|
||||
{
|
||||
this.autorizacion = autor;
|
||||
}
|
||||
|
||||
public int get_medico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
public void set_medico(int med)
|
||||
{
|
||||
this.medico = med;
|
||||
}
|
||||
|
||||
public int get_especialidad1()
|
||||
{
|
||||
return this.especialidad1;
|
||||
}
|
||||
|
||||
public void set_especialidad1(int espe1)
|
||||
{
|
||||
this.especialidad1 = espe1;
|
||||
}
|
||||
|
||||
public int get_acto1()
|
||||
{
|
||||
return this.acto1;
|
||||
}
|
||||
|
||||
public void set_acto1(int act1)
|
||||
{
|
||||
this.acto1 = act1;
|
||||
}
|
||||
|
||||
public int get_entidad()
|
||||
{
|
||||
return this.entidad;
|
||||
}
|
||||
|
||||
public void set_entidad(int ent)
|
||||
{
|
||||
this.entidad = ent;
|
||||
}
|
||||
|
||||
public long get_colectivo()
|
||||
{
|
||||
return this.colectivo;
|
||||
}
|
||||
|
||||
public void set_colectivo(long col)
|
||||
{
|
||||
this.colectivo = col;
|
||||
}
|
||||
|
||||
public long get_poliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
public void set_poliza(long pol)
|
||||
{
|
||||
this.poliza = pol;
|
||||
}
|
||||
|
||||
public int get_orden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
public void set_orden(int ord)
|
||||
{
|
||||
this.orden = ord;
|
||||
}
|
||||
|
||||
public Date get_fecha_autorizacion()
|
||||
{
|
||||
return this.fecha_autorizacion;
|
||||
}
|
||||
|
||||
public void set_fecha_autorizacion(Date fecaut)
|
||||
{
|
||||
this.fecha_autorizacion = fecaut;
|
||||
}
|
||||
|
||||
public int get_prescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
public void set_prescriptor(int pres)
|
||||
{
|
||||
this.prescriptor = pres;
|
||||
}
|
||||
|
||||
public String get_provincia()
|
||||
{
|
||||
return this.provincia;
|
||||
}
|
||||
|
||||
public void set_provincia(String pro)
|
||||
{
|
||||
this.provincia = pro;
|
||||
}
|
||||
|
||||
public int get_cantidad1()
|
||||
{
|
||||
return this.cantidad1;
|
||||
}
|
||||
|
||||
public void set_cantidad1(int c1)
|
||||
{
|
||||
this.cantidad1 = c1;
|
||||
}
|
||||
|
||||
public String get_descripcion1()
|
||||
{
|
||||
return this.descripcion1;
|
||||
}
|
||||
|
||||
public void set_descripcion1(String d1)
|
||||
{
|
||||
this.descripcion1 = d1;
|
||||
}
|
||||
|
||||
public Date get_fecha_validez()
|
||||
{
|
||||
return this.fecha_validez;
|
||||
}
|
||||
|
||||
public void set_fecha_validez(Date fecval)
|
||||
{
|
||||
this.fecha_validez = fecval;
|
||||
}
|
||||
|
||||
public String get_nombre_completo()
|
||||
{
|
||||
return this.nombre_completo;
|
||||
}
|
||||
|
||||
public void set_nombre_completo(String nom)
|
||||
{
|
||||
this.nombre_completo = nom;
|
||||
}
|
||||
|
||||
public int get_especialidad2()
|
||||
{
|
||||
return this.especialidad2;
|
||||
}
|
||||
|
||||
public void set_especialidad2(int espe2)
|
||||
{
|
||||
this.especialidad2 = espe2;
|
||||
}
|
||||
|
||||
public int get_acto2()
|
||||
{
|
||||
return this.acto2;
|
||||
}
|
||||
|
||||
public void set_acto2(int a2)
|
||||
{
|
||||
this.acto2 = a2;
|
||||
}
|
||||
|
||||
public int get_cantidad2()
|
||||
{
|
||||
return this.cantidad2;
|
||||
}
|
||||
|
||||
public void set_cantidad2(int c2)
|
||||
{
|
||||
this.cantidad2 = c2;
|
||||
}
|
||||
|
||||
public String get_descripcion2()
|
||||
{
|
||||
return this.descripcion2;
|
||||
}
|
||||
|
||||
public void set_descripcion2(String d2)
|
||||
{
|
||||
this.descripcion2 = d2;
|
||||
}
|
||||
|
||||
public int get_especialidad3()
|
||||
{
|
||||
return this.especialidad3;
|
||||
}
|
||||
|
||||
public void set_especialidad3(int espe3)
|
||||
{
|
||||
this.especialidad3 = espe3;
|
||||
}
|
||||
|
||||
public int get_acto3()
|
||||
{
|
||||
return this.acto3;
|
||||
}
|
||||
|
||||
public void set_acto3(int a3)
|
||||
{
|
||||
this.acto3 = a3;
|
||||
}
|
||||
|
||||
public int get_cantidad3()
|
||||
{
|
||||
return this.cantidad3;
|
||||
}
|
||||
|
||||
public void set_cantidad3(int c3)
|
||||
{
|
||||
this.cantidad3 = c3;
|
||||
}
|
||||
|
||||
public String get_descripcion3()
|
||||
{
|
||||
return this.descripcion3;
|
||||
}
|
||||
|
||||
public void set_descripcion3(String d3)
|
||||
{
|
||||
this.descripcion3 = d3;
|
||||
}
|
||||
|
||||
public int get_especialidad4()
|
||||
{
|
||||
return this.especialidad4;
|
||||
}
|
||||
|
||||
public void set_especialidad4(int espe4)
|
||||
{
|
||||
this.especialidad4 = espe4;
|
||||
}
|
||||
|
||||
public int get_acto4()
|
||||
{
|
||||
return this.acto4;
|
||||
}
|
||||
|
||||
public void set_acto4(int a4)
|
||||
{
|
||||
this.acto2 = a4;
|
||||
}
|
||||
|
||||
public int get_cantidad4()
|
||||
{
|
||||
return this.cantidad4;
|
||||
}
|
||||
|
||||
public void set_cantidad4(int c4)
|
||||
{
|
||||
this.cantidad4 = c4;
|
||||
}
|
||||
|
||||
public String get_descripcion4()
|
||||
{
|
||||
return this.descripcion4;
|
||||
}
|
||||
|
||||
public void set_descripcion4(String d4)
|
||||
{
|
||||
this.descripcion4 = d4;
|
||||
}
|
||||
|
||||
public String get_texto()
|
||||
{
|
||||
return this.texto;
|
||||
}
|
||||
|
||||
public void set_texto(String txt)
|
||||
{
|
||||
this.texto = txt;
|
||||
}
|
||||
|
||||
public String get_usuario()
|
||||
{
|
||||
return this.usuario;
|
||||
}
|
||||
|
||||
public void set_usuario(String usu)
|
||||
{
|
||||
this.usuario = usu;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,163 @@
|
||||
/**
|
||||
* @(#) Tabenefi.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tabenefi
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int codcli;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecbaja;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int tarjeta;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String autorizado;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden
|
||||
* @return
|
||||
*/
|
||||
public void setOrden(int orden)
|
||||
{
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getCodcli()
|
||||
{
|
||||
return this.codcli;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param codcli
|
||||
* @return
|
||||
*/
|
||||
public void setCodcli(int codcli)
|
||||
{
|
||||
this.codcli = codcli;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecbaja()
|
||||
{
|
||||
return this.fecbaja;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecbaja
|
||||
* @return
|
||||
*/
|
||||
public void setFecbaja(java.sql.Date fecbaja)
|
||||
{
|
||||
this.fecbaja = fecbaja;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getTarjeta()
|
||||
{
|
||||
return this.tarjeta;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param tarjeta
|
||||
* @return
|
||||
*/
|
||||
public void setTarjeta(int tarjeta)
|
||||
{
|
||||
this.tarjeta = tarjeta;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getAutorizado()
|
||||
{
|
||||
return this.autorizado;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizado
|
||||
* @return
|
||||
*/
|
||||
public void setAutorizado(String autorizado)
|
||||
{
|
||||
this.autorizado = autorizado;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @(#) Tacentro.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tacentro
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private String codigo;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getCodigo()
|
||||
{
|
||||
return this.codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param codigo
|
||||
* @return
|
||||
*/
|
||||
public void setCodigo(String codigo)
|
||||
{
|
||||
this.codigo = codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcion()
|
||||
{
|
||||
return this.descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcion(String descripcion)
|
||||
{
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
/**
|
||||
* @(#) Taclient.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taclient
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int codcli;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getCodcli()
|
||||
{
|
||||
return this.codcli;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param codcli
|
||||
* @return
|
||||
*/
|
||||
public void setCodcli(int codcli)
|
||||
{
|
||||
this.codcli = codcli;
|
||||
}
|
||||
|
||||
/**
|
||||
* @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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Created on 25-oct-2005
|
||||
*
|
||||
* TODO To change the template for this generated file go to
|
||||
* Window - Preferences - Java - Code Style - Code Templates
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* @author Roumen
|
||||
*
|
||||
* TODO To change the template for this generated type comment go to
|
||||
* Window - Preferences - Java - Code Style - Code Templates
|
||||
*/
|
||||
public class Tadercac {
|
||||
|
||||
private int contrato;
|
||||
|
||||
private int especialidad;
|
||||
|
||||
private int acto;
|
||||
|
||||
private int excluido;
|
||||
|
||||
private int dias_hospitalizacion;
|
||||
|
||||
private int carencia;
|
||||
|
||||
private int medicacion;
|
||||
|
||||
private int protesis;
|
||||
|
||||
private int material_ortopedico;
|
||||
|
||||
private int material_biologico;
|
||||
|
||||
private int contraste;
|
||||
|
||||
private int anestesia;
|
||||
|
||||
private int edad;
|
||||
|
||||
private String observaciones;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Created on 26-oct-2005
|
||||
*
|
||||
* TODO To change the template for this generated file go to
|
||||
* Window - Preferences - Java - Code Style - Code Templates
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* @author Roumen
|
||||
*
|
||||
* TODO To change the template for this generated type comment go to
|
||||
* Window - Preferences - Java - Code Style - Code Templates
|
||||
*/
|
||||
public class Tadercol {
|
||||
|
||||
private long colectivo;
|
||||
|
||||
private int especialidad;
|
||||
|
||||
private int acto;
|
||||
|
||||
private int excluido;
|
||||
|
||||
private int dias_hospitalizacion;
|
||||
|
||||
private int carencia;
|
||||
|
||||
private int medicacion;
|
||||
|
||||
private int protesis;
|
||||
|
||||
private int material_ortopedico;
|
||||
|
||||
private int material_biologico;
|
||||
|
||||
private int contraste;
|
||||
|
||||
private int anestesia;
|
||||
|
||||
private int edad;
|
||||
|
||||
private String observaciones;
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Created on 26-oct-2005
|
||||
*
|
||||
* TODO To change the template for this generated file go to
|
||||
* Window - Preferences - Java - Code Style - Code Templates
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* @author Roumen
|
||||
*
|
||||
* TODO To change the template for this generated type comment go to
|
||||
* Window - Preferences - Java - Code Style - Code Templates
|
||||
*/
|
||||
public class Taderpol {
|
||||
|
||||
private long colectivo;
|
||||
|
||||
private int poliza;
|
||||
|
||||
private int especialidad;
|
||||
|
||||
private int acto;
|
||||
|
||||
private int excluido;
|
||||
|
||||
private int dias_hospitalizacion;
|
||||
|
||||
private int carencia;
|
||||
|
||||
private int medicacion;
|
||||
|
||||
private int protesis;
|
||||
|
||||
private int material_ortopedico;
|
||||
|
||||
private int material_biologico;
|
||||
|
||||
private int contraste;
|
||||
|
||||
private int anestesia;
|
||||
|
||||
private int edad;
|
||||
|
||||
private String observaciones;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import java.sql.Date;
|
||||
|
||||
public class Tadespla
|
||||
{
|
||||
private String TARJETA_CHIPCARD;
|
||||
|
||||
private String NOMBRE_COMPLETO;
|
||||
|
||||
private Date FECHA_ALTA;
|
||||
|
||||
private Date FECHA_REGISTRO;
|
||||
|
||||
private int CONTRATO_CHIPCARD;
|
||||
|
||||
private int ENTIDAD_CHIPCARD;
|
||||
|
||||
private int TRATADO;
|
||||
|
||||
private String TROQUELADO;
|
||||
|
||||
public void set_tarjeta(String tarjeta)
|
||||
{
|
||||
this.TARJETA_CHIPCARD = tarjeta;
|
||||
}
|
||||
|
||||
public void setNombre(String apellidos)
|
||||
{
|
||||
this.NOMBRE_COMPLETO = apellidos;
|
||||
}
|
||||
|
||||
public void setFecha_Alta(Date fecha_imput)
|
||||
{
|
||||
this.FECHA_ALTA = fecha_imput;
|
||||
}
|
||||
|
||||
public void setFecha_Registro(Date fecreg)
|
||||
{
|
||||
this.FECHA_REGISTRO = fecreg;
|
||||
}
|
||||
|
||||
public void setContrato (int contr)
|
||||
{
|
||||
this.CONTRATO_CHIPCARD = contr;
|
||||
}
|
||||
|
||||
public void setEntidad_chipcard (int entidad)
|
||||
{
|
||||
this.ENTIDAD_CHIPCARD = entidad;
|
||||
}
|
||||
|
||||
public void setResultado(int resul)
|
||||
{
|
||||
this.TRATADO = resul;
|
||||
}
|
||||
|
||||
public String getTarjeta ()
|
||||
{
|
||||
return this.TARJETA_CHIPCARD;
|
||||
}
|
||||
|
||||
public String getNombre()
|
||||
{
|
||||
return this.NOMBRE_COMPLETO;
|
||||
}
|
||||
|
||||
public Date getFecha_Alta()
|
||||
{
|
||||
return this.FECHA_ALTA;
|
||||
}
|
||||
|
||||
public Date getFecha_Registro()
|
||||
{
|
||||
return this.FECHA_REGISTRO;
|
||||
}
|
||||
|
||||
public int getContrato ()
|
||||
{
|
||||
return this.CONTRATO_CHIPCARD;
|
||||
}
|
||||
|
||||
public int getEntidad_chipcard ()
|
||||
{
|
||||
return this.ENTIDAD_CHIPCARD;
|
||||
}
|
||||
|
||||
public int getTratado()
|
||||
{
|
||||
//boolean mayor_de_edad = edad > 18 ? true: false;
|
||||
return this.TRATADO;
|
||||
}
|
||||
|
||||
public String getTroquelado()
|
||||
{
|
||||
return this.TROQUELADO;
|
||||
}
|
||||
|
||||
public void setTroquelado(String troquelado)
|
||||
{
|
||||
this.TROQUELADO = troquelado;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
/**
|
||||
* @(#) Tadremed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tadremed
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double importe;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double irpf;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double importeTotal;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double irpfTotal;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getImporte()
|
||||
{
|
||||
return this.importe;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param importe
|
||||
* @return
|
||||
*/
|
||||
public void setImporte(double importe)
|
||||
{
|
||||
this.importe = importe;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getIrpf()
|
||||
{
|
||||
return this.irpf;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param irpf
|
||||
* @return
|
||||
*/
|
||||
public void setIrpf(double irpf)
|
||||
{
|
||||
this.irpf = irpf;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the importeTotal
|
||||
*/
|
||||
public double getImporteTotal() {
|
||||
return importeTotal;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param importeTotal the importeTotal to set
|
||||
*/
|
||||
public void setImporteTotal(double importeTotal) {
|
||||
this.importeTotal = importeTotal;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the irpfTotal
|
||||
*/
|
||||
public double getIrpfTotal() {
|
||||
return irpfTotal;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param irpfTotal the irpfTotal to set
|
||||
*/
|
||||
public void setIrpfTotal(double irpfTotal) {
|
||||
this.irpfTotal = irpfTotal;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @(#) Taespeci.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taespeci
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcion()
|
||||
{
|
||||
return this.descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcion(String descripcion)
|
||||
{
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,140 @@
|
||||
/**
|
||||
* @(#) Tagruana.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tagruana
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int grupo;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcionActo;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getGrupo()
|
||||
{
|
||||
return this.grupo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param grupo
|
||||
* @return
|
||||
*/
|
||||
public void setGrupo(int grupo)
|
||||
{
|
||||
this.grupo = grupo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcionActo()
|
||||
{
|
||||
return this.descripcionActo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcionActo
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcionActo(String descripcionActo)
|
||||
{
|
||||
this.descripcionActo = descripcionActo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcion()
|
||||
{
|
||||
return this.descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcion(String descripcion)
|
||||
{
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
/**
|
||||
* @(#) Taiguala.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taiguala
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int contrato;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getContrato()
|
||||
{
|
||||
return this.contrato;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param contrato
|
||||
* @return
|
||||
*/
|
||||
public void setContrato(int contrato)
|
||||
{
|
||||
this.contrato = contrato;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,144 @@
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import java.sql.Date;
|
||||
import java.util.Calendar;
|
||||
|
||||
public class Taliquimedi {
|
||||
|
||||
private int medico;
|
||||
|
||||
private int medico_origen;
|
||||
|
||||
private String mes;
|
||||
|
||||
private String anio;
|
||||
|
||||
private Date fecha_factura;
|
||||
|
||||
private int factura;
|
||||
|
||||
private int especialidad;
|
||||
|
||||
private String desc_esp;
|
||||
|
||||
private int acto;
|
||||
|
||||
private String descripcion;
|
||||
|
||||
private double precio;
|
||||
|
||||
private int cantidad;
|
||||
|
||||
private Double importe;
|
||||
|
||||
public int getMedico() {
|
||||
return medico;
|
||||
}
|
||||
|
||||
public void setMedico(int medico) {
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
public int getMedico_origen() {
|
||||
return medico_origen;
|
||||
}
|
||||
|
||||
public void setMedico_origen(int medico_origen) {
|
||||
this.medico_origen = medico_origen;
|
||||
}
|
||||
|
||||
public String getMes() {
|
||||
return mes;
|
||||
}
|
||||
|
||||
public void setMes(String mes) {
|
||||
this.mes = mes;
|
||||
}
|
||||
|
||||
public String getAnio() {
|
||||
return anio;
|
||||
}
|
||||
|
||||
public void setAnio(String anio) {
|
||||
this.anio = anio;
|
||||
}
|
||||
|
||||
public Date getFecha_factura() {
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
return (this.fecha_factura == null)?esNula:this.fecha_factura;
|
||||
}
|
||||
|
||||
public void setFecha_factura(Date fecha_factura) {
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
this.fecha_factura = (fecha_factura == null)?esNula:fecha_factura;
|
||||
}
|
||||
|
||||
public int getFactura() {
|
||||
return factura;
|
||||
}
|
||||
|
||||
public void setFactura(int factura) {
|
||||
this.factura = factura;
|
||||
}
|
||||
|
||||
public int getEspecialidad() {
|
||||
return especialidad;
|
||||
}
|
||||
|
||||
public void setEspecialidad(int especialidad) {
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
public String getDesc_esp() {
|
||||
return desc_esp;
|
||||
}
|
||||
|
||||
public void setDesc_esp(String desc_esp) {
|
||||
this.desc_esp = desc_esp;
|
||||
}
|
||||
|
||||
public int getActo() {
|
||||
return acto;
|
||||
}
|
||||
|
||||
public void setActo(int acto) {
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
public String getDescripcion() {
|
||||
return descripcion;
|
||||
}
|
||||
|
||||
public void setDescripcion(String descripcion) {
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
public double getPrecio() {
|
||||
return precio;
|
||||
}
|
||||
|
||||
public void setPrecio(double precio) {
|
||||
this.precio = precio;
|
||||
}
|
||||
|
||||
public int getCantidad() {
|
||||
return cantidad;
|
||||
}
|
||||
|
||||
public void setCantidad(int cantidad) {
|
||||
this.cantidad = cantidad;
|
||||
}
|
||||
|
||||
public Double getImporte() {
|
||||
return importe;
|
||||
}
|
||||
|
||||
public void setImporte(Double importe) {
|
||||
this.importe = importe;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.Date;
|
||||
import java.util.Calendar;
|
||||
//import java.text.DecimalFormat;
|
||||
|
||||
public class TaliquimediDet implements Serializable
|
||||
{
|
||||
private int medico;
|
||||
|
||||
private int factura;
|
||||
|
||||
private String apellidos;
|
||||
|
||||
private int entidad;
|
||||
|
||||
private int colectivo;
|
||||
|
||||
private double poliza;
|
||||
|
||||
private int orden;
|
||||
|
||||
private Date fecha_gasto;
|
||||
|
||||
private Date fecha_factura;
|
||||
|
||||
private int especialidad;
|
||||
|
||||
private String descripcion;
|
||||
|
||||
private double importe;
|
||||
//
|
||||
//DecimalFormat df = new DecimalFormat("#.##");
|
||||
// df.format(resul.getDouble("PRECIO"))
|
||||
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
public void setMedico(int med)
|
||||
{
|
||||
this.medico = med;
|
||||
}
|
||||
|
||||
public int getFactura()
|
||||
{
|
||||
return this.factura;
|
||||
}
|
||||
|
||||
public void setFactura(int fac)
|
||||
{
|
||||
this.factura = fac;
|
||||
}
|
||||
|
||||
public String getApellidos()
|
||||
{
|
||||
return (this.apellidos == null)?"":this.apellidos;
|
||||
}
|
||||
|
||||
public void setApellidos(String ape)
|
||||
{
|
||||
this.apellidos = (ape == null)?"":ape;
|
||||
}
|
||||
|
||||
public int getEntidad()
|
||||
{
|
||||
return this.entidad;
|
||||
}
|
||||
|
||||
public void setEntidad(int enti)
|
||||
{
|
||||
this.entidad = enti;
|
||||
}
|
||||
|
||||
public int getColectivo()
|
||||
{
|
||||
return this.colectivo;
|
||||
}
|
||||
|
||||
public void setColectivo(int col)
|
||||
{
|
||||
this.colectivo = col;
|
||||
}
|
||||
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
public void setPoliza(double pol)
|
||||
{
|
||||
this.poliza = pol;
|
||||
}
|
||||
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
public void setOrden(int ord)
|
||||
{
|
||||
this.orden = ord;
|
||||
}
|
||||
|
||||
public Date getFecha_gasto()
|
||||
{
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
return (this.fecha_gasto == null)?esNula:this.fecha_gasto;
|
||||
}
|
||||
|
||||
public void setFecha_gasto(Date fecgas)
|
||||
{
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
this.fecha_gasto = (fecgas == null)?esNula:fecgas;
|
||||
}
|
||||
|
||||
public Date getFecha_factura()
|
||||
{
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
return (this.fecha_factura == null)?esNula:this.fecha_factura;
|
||||
}
|
||||
|
||||
public void setFecha_factura(Date fecfac)
|
||||
{
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
this.fecha_factura = (fecfac == null)?esNula:fecfac;
|
||||
}
|
||||
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
public void setEspecialidad(int espe)
|
||||
{
|
||||
this.especialidad = espe;
|
||||
}
|
||||
|
||||
public String getDescripcion()
|
||||
{
|
||||
return (this.descripcion == null)?"":this.descripcion;
|
||||
}
|
||||
|
||||
public void setDescripcion(String desc)
|
||||
{
|
||||
this.descripcion = (desc == null)?"":desc;
|
||||
}
|
||||
|
||||
public double getImporte()
|
||||
{
|
||||
return this.importe;
|
||||
}
|
||||
|
||||
public void setImporte(double imp)
|
||||
{
|
||||
this.importe = imp;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @(#) Tamedica.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tamedica
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int codigo;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getCodigo()
|
||||
{
|
||||
return this.codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param codigo
|
||||
* @return
|
||||
*/
|
||||
public void setCodigo(int codigo)
|
||||
{
|
||||
this.codigo = codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcion()
|
||||
{
|
||||
return this.descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcion(String descripcion)
|
||||
{
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @(#) Tamensaje.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tamensaje
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int codigo;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String mensaje;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getCodigo()
|
||||
{
|
||||
return this.codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setCodigo(int codigo)
|
||||
{
|
||||
this.codigo = codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getMensaje()
|
||||
{
|
||||
return this.mensaje;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setMensaje(String mensaje)
|
||||
{
|
||||
this.mensaje = mensaje;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,260 @@
|
||||
/**
|
||||
* @(#) Tamovext.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tamovext
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int numseq;
|
||||
|
||||
private int entidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double precio;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int prescriptor;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Long autorizacion;
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Long getAutorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param aut
|
||||
*/
|
||||
public void setAutorizacion(Long aut)
|
||||
{
|
||||
this.autorizacion = aut;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getNumseq()
|
||||
{
|
||||
return this.numseq;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param numseq
|
||||
* @return
|
||||
*/
|
||||
public void setNumseq(int numseq)
|
||||
{
|
||||
this.numseq = numseq;
|
||||
}
|
||||
|
||||
public int getEntidad()
|
||||
{
|
||||
return this.entidad;
|
||||
}
|
||||
|
||||
public void setEntidad(int ent)
|
||||
{
|
||||
this.entidad = ent;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden
|
||||
* @return
|
||||
*/
|
||||
public void setOrden(int orden)
|
||||
{
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPrecio()
|
||||
{
|
||||
return this.precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param precio
|
||||
* @return
|
||||
*/
|
||||
public void setPrecio(double precio)
|
||||
{
|
||||
this.precio = precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getPrescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param prescriptor
|
||||
* @return
|
||||
*/
|
||||
public void setPrescriptor(int prescriptor)
|
||||
{
|
||||
this.prescriptor = prescriptor;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,250 @@
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
public class TamovextDental {
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int numseq;
|
||||
|
||||
private int entidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double precio;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int prescriptor;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Long autorizacion;
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Long getAutorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param aut
|
||||
*/
|
||||
public void setAutorizacion(Long aut)
|
||||
{
|
||||
this.autorizacion = aut;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getNumseq()
|
||||
{
|
||||
return this.numseq;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param numseq
|
||||
* @return
|
||||
*/
|
||||
public void setNumseq(int numseq)
|
||||
{
|
||||
this.numseq = numseq;
|
||||
}
|
||||
|
||||
public int getEntidad()
|
||||
{
|
||||
return this.entidad;
|
||||
}
|
||||
|
||||
public void setEntidad(int ent)
|
||||
{
|
||||
this.entidad = ent;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden
|
||||
* @return
|
||||
*/
|
||||
public void setOrden(int orden)
|
||||
{
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPrecio()
|
||||
{
|
||||
return this.precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param precio
|
||||
* @return
|
||||
*/
|
||||
public void setPrecio(double precio)
|
||||
{
|
||||
this.precio = precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getPrescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param prescriptor
|
||||
* @return
|
||||
*/
|
||||
public void setPrescriptor(int prescriptor)
|
||||
{
|
||||
this.prescriptor = prescriptor;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,163 @@
|
||||
/**
|
||||
* @(#) Tamovmpo.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tamovmpo
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int numero;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String texto;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden
|
||||
* @return
|
||||
*/
|
||||
public void setOrden(int orden)
|
||||
{
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getNumero()
|
||||
{
|
||||
return this.numero;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param numero
|
||||
* @return
|
||||
*/
|
||||
public void setNumero(int numero)
|
||||
{
|
||||
this.numero = numero;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getTexto()
|
||||
{
|
||||
return this.texto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param texto
|
||||
* @return
|
||||
*/
|
||||
public void setTexto(String texto)
|
||||
{
|
||||
this.texto = texto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/**
|
||||
* @(#) TanivelActo.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class TanivelActo
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int nivel;
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad() {
|
||||
return especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad) {
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo() {
|
||||
return acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto) {
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getNivel() {
|
||||
return nivel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nivel
|
||||
* @return
|
||||
*/
|
||||
public void setNivel(int nivel) {
|
||||
this.nivel = nivel;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
/**
|
||||
* @(#) TanivelEspecialidad.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class TanivelEspecialidad
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int nivel;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int visibilidad;
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad() {
|
||||
return especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad) {
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getNivel() {
|
||||
return nivel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nivel
|
||||
* @return
|
||||
*/
|
||||
public void setNivel(int nivel) {
|
||||
this.nivel = nivel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getVisibilidad() {
|
||||
return visibilidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param visibilidad
|
||||
* @return
|
||||
*/
|
||||
public void setVisibilidad(int visibilidad) {
|
||||
this.visibilidad = visibilidad;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import java.sql.Date;
|
||||
|
||||
public class Tanoticias {
|
||||
|
||||
private int id_noticia;
|
||||
|
||||
private String noticia;
|
||||
|
||||
private Date fecha;
|
||||
|
||||
private int cabecera;
|
||||
|
||||
/**
|
||||
* @return the id_noticia
|
||||
*/
|
||||
public int getId_noticia() {
|
||||
return id_noticia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param id_noticia the id_noticia to set
|
||||
*/
|
||||
public void setId_noticia(int id_noticia) {
|
||||
this.id_noticia = id_noticia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the noticia
|
||||
*/
|
||||
public String getNoticia() {
|
||||
return noticia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param noticia the noticia to set
|
||||
*/
|
||||
public void setNoticia(String noticia) {
|
||||
this.noticia = noticia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the fecha
|
||||
*/
|
||||
public Date getFecha() {
|
||||
return fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha the fecha to set
|
||||
*/
|
||||
public void setFecha(Date fecha) {
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the cabecera
|
||||
*/
|
||||
public int getCabecera() {
|
||||
return cabecera;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param cabecera the cabecera to set
|
||||
*/
|
||||
public void setCabecera(int cabecera) {
|
||||
this.cabecera = cabecera;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @(#) Taparame.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taparame
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private String visita;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String periodo;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getVisita()
|
||||
{
|
||||
return this.visita;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param visita
|
||||
* @return
|
||||
*/
|
||||
public void setVisita(String visita)
|
||||
{
|
||||
this.visita = visita;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getPeriodo()
|
||||
{
|
||||
return this.periodo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param periodo
|
||||
* @return
|
||||
*/
|
||||
public void setPeriodo(String periodo)
|
||||
{
|
||||
this.periodo = periodo;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,315 @@
|
||||
/**
|
||||
* @(#) Tapecap.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
public class Tapecap {
|
||||
|
||||
/**
|
||||
*/
|
||||
private String codigo;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String nif;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String direccion;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha_nac;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String telefono;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String compania;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String identificador;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private long autorizacion;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String prescriptor;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private Double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private long colectivo;
|
||||
|
||||
|
||||
/**
|
||||
* @return the codigo
|
||||
*/
|
||||
public String getCodigo() {
|
||||
return codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param codigo the codigo to set
|
||||
*/
|
||||
public void setCodigo(String codigo) {
|
||||
this.codigo = codigo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the fecha
|
||||
*/
|
||||
public java.sql.Date getFecha() {
|
||||
return fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha the fecha to set
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha) {
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the apellidos
|
||||
*/
|
||||
public String getApellidos() {
|
||||
return apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param apellidos the apellidos to set
|
||||
*/
|
||||
public void setApellidos(String apellidos) {
|
||||
this.apellidos = apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the nombre
|
||||
*/
|
||||
public String getNombre() {
|
||||
return nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nombre the nombre to set
|
||||
*/
|
||||
public void setNombre(String nombre) {
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the nif
|
||||
*/
|
||||
public String getNif() {
|
||||
return nif;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nif the nif to set
|
||||
*/
|
||||
public void setNif(String nif) {
|
||||
this.nif = nif;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the direccion
|
||||
*/
|
||||
public String getDireccion() {
|
||||
return direccion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param direccion the direccion to set
|
||||
*/
|
||||
public void setDireccion(String direccion) {
|
||||
this.direccion = direccion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the fecha_nac
|
||||
*/
|
||||
public java.sql.Date getFecha_nac() {
|
||||
return fecha_nac;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha_nac the fecha_nac to set
|
||||
*/
|
||||
public void setFecha_nac(java.sql.Date fecha_nac) {
|
||||
this.fecha_nac = fecha_nac;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the telefono
|
||||
*/
|
||||
public String getTelefono() {
|
||||
return telefono;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param telefono the telefono to set
|
||||
*/
|
||||
public void setTelefono(String telefono) {
|
||||
this.telefono = telefono;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the compania
|
||||
*/
|
||||
public String getCompania() {
|
||||
return compania;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param compania the compania to set
|
||||
*/
|
||||
public void setCompania(String compania) {
|
||||
this.compania = compania;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the poliza
|
||||
*/
|
||||
public String getIdentificador() {
|
||||
return identificador;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza the poliza to set
|
||||
*/
|
||||
public void setIdentificador(String identificador) {
|
||||
this.identificador = identificador;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the medico
|
||||
*/
|
||||
public int getMedico() {
|
||||
return medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico the medico to set
|
||||
*/
|
||||
public void setMedico(int medico) {
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the autorizacion
|
||||
*/
|
||||
public long getAutorizacion() {
|
||||
return autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizacion the autorizacion to set
|
||||
*/
|
||||
public void setAutorizacion(long autorizacion) {
|
||||
this.autorizacion = autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the prescriptor
|
||||
*/
|
||||
public String getPrescriptor() {
|
||||
return prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param prescriptor the prescriptor to set
|
||||
*/
|
||||
public void setPrescriptor(String prescriptor) {
|
||||
this.prescriptor = prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the especialidad
|
||||
*/
|
||||
public String getEspecialidad() {
|
||||
return especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad the especialidad to set
|
||||
*/
|
||||
public void setEspecialidad(String especialidad) {
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the poliza
|
||||
*/
|
||||
public Double getPoliza() {
|
||||
return poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza the poliza to set
|
||||
*/
|
||||
public void setPoliza(Double poliza) {
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the orden
|
||||
*/
|
||||
public int getOrden() {
|
||||
return orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden the orden to set
|
||||
*/
|
||||
public void setOrden(int orden) {
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the colectivo
|
||||
*/
|
||||
public long getColectivo() {
|
||||
return colectivo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colectivo the colectivo to set
|
||||
*/
|
||||
public void setColectivo(long colectivo) {
|
||||
this.colectivo = colectivo;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
/**
|
||||
* @(#) Tapolfac.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tapolfac
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String titular;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int beneficiarios;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getTitular()
|
||||
{
|
||||
return this.titular;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param titular
|
||||
* @return
|
||||
*/
|
||||
public void setTitular(String titular)
|
||||
{
|
||||
this.titular = titular;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getBeneficiarios()
|
||||
{
|
||||
return this.beneficiarios;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param beneficiarios
|
||||
* @return
|
||||
*/
|
||||
public void setBeneficiarios(int beneficiarios)
|
||||
{
|
||||
this.beneficiarios = beneficiarios;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,266 @@
|
||||
/**
|
||||
* @(#) tapresca_tarisan.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tapresca
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int prescriptor;
|
||||
|
||||
/**
|
||||
*/
|
||||
private long autorizacion;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String autorizacionEncriptada;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String texto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String centro;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String justificacion;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden
|
||||
* @return
|
||||
*/
|
||||
public void setOrden(int orden)
|
||||
{
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getPrescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param prescriptor
|
||||
* @return
|
||||
*/
|
||||
public void setPrescriptor(int prescriptor)
|
||||
{
|
||||
this.prescriptor = prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public long getAutorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizacion
|
||||
* @return
|
||||
*/
|
||||
public void setAutorizacion(long autorizacion)
|
||||
{
|
||||
this.autorizacion = autorizacion;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getTexto()
|
||||
{
|
||||
return this.texto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param texto
|
||||
* @return
|
||||
*/
|
||||
public void setTexto(String texto)
|
||||
{
|
||||
this.texto = texto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getCentro()
|
||||
{
|
||||
return this.centro;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param centro
|
||||
* @return
|
||||
*/
|
||||
public void setCentro(String centro)
|
||||
{
|
||||
this.centro = centro;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getJustificacion()
|
||||
{
|
||||
return this.justificacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param justificacion
|
||||
* @return
|
||||
*/
|
||||
public void setJustificacion(String justificacion)
|
||||
{
|
||||
this.justificacion = justificacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the autorizacionEncriptada
|
||||
*/
|
||||
public String getAutorizacionEncriptada() {
|
||||
return autorizacionEncriptada;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizacionEncriptada the autorizacionEncriptada to set
|
||||
*/
|
||||
public void setAutorizacionEncriptada(String autorizacionEncriptada) {
|
||||
this.autorizacionEncriptada = autorizacionEncriptada;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,121 @@
|
||||
/**
|
||||
* @(#) Taprimer.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taprimer
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden
|
||||
* @return
|
||||
*/
|
||||
public void setOrden(int orden)
|
||||
{
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
/**
|
||||
* @(#) Tarecofi.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tarecofi
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double pendiente;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPendiente()
|
||||
{
|
||||
return this.pendiente;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param pendiente
|
||||
* @return
|
||||
*/
|
||||
public void setPendiente(double pendiente)
|
||||
{
|
||||
this.pendiente = pendiente;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
/**
|
||||
* @(#) Taregmed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taregmed
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Timestamp fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String resultado;
|
||||
|
||||
|
||||
/**
|
||||
* @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 String getResultado()
|
||||
{
|
||||
return this.resultado;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param resultado
|
||||
* @return
|
||||
*/
|
||||
public void setResultado(String resultado)
|
||||
{
|
||||
this.resultado = resultado;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,184 @@
|
||||
/**
|
||||
* @(#) Taresana.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Taresana
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int prescriptor;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
/**
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int autorizacion;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int laboratorio;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getPrescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param prescriptor
|
||||
* @return
|
||||
*/
|
||||
public void setPrescriptor(int prescriptor)
|
||||
{
|
||||
this.prescriptor = prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getColec()
|
||||
{
|
||||
return this.colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colec
|
||||
* @return
|
||||
*/
|
||||
public void setColec(int colec)
|
||||
{
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPoliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(double poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getOrden()
|
||||
{
|
||||
return this.orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param orden
|
||||
* @return
|
||||
*/
|
||||
public void setOrden(int orden)
|
||||
{
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fecha
|
||||
* @return
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getAutorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizacion
|
||||
* @return
|
||||
*/
|
||||
public void setAutorizacion(int autorizacion)
|
||||
{
|
||||
this.autorizacion = autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getLaboratorio()
|
||||
{
|
||||
return this.laboratorio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param laboratorio
|
||||
* @return
|
||||
*/
|
||||
public void setLaboratorio(int laboratorio)
|
||||
{
|
||||
this.laboratorio = laboratorio;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,269 @@
|
||||
/**
|
||||
* @(#) Tarjeta.java
|
||||
*/
|
||||
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import com.tarisan.util.Utilidades;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Tarjeta de Paciente.
|
||||
* Contiene los campos necesarios leídos en el paso de la tarjeta de un paciente.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class Tarjeta implements Serializable
|
||||
{
|
||||
/**
|
||||
* Beneficiarios
|
||||
*/
|
||||
private int beneficiario;
|
||||
|
||||
/**
|
||||
* Entidad en imq
|
||||
*/
|
||||
private int entidad_imq;
|
||||
|
||||
/**
|
||||
* Colectivo
|
||||
*/
|
||||
private long colectivo;
|
||||
|
||||
/**
|
||||
* Contrato
|
||||
*/
|
||||
private int contrato;
|
||||
|
||||
/**
|
||||
* Número de póliza del paciente
|
||||
*/
|
||||
private long poliza;
|
||||
|
||||
/**
|
||||
* Número de tarjeta del paciente
|
||||
*/
|
||||
private int tarjeta;
|
||||
|
||||
/**
|
||||
* Si la tarjeta es buena o no
|
||||
*/
|
||||
private boolean valida;
|
||||
|
||||
/**
|
||||
* La entidad a la que pertenece la tarjeta:
|
||||
* 0 -> IMQ DIRECTOS
|
||||
* 1 -> ADESLAS
|
||||
* 2 -> DKV
|
||||
* 3 -> SANITAS
|
||||
*/
|
||||
private String entidad_chipcard;
|
||||
|
||||
private String tarjeta_Desplazado;
|
||||
|
||||
private String fecha_alta_chipcard;
|
||||
|
||||
private String pista2;
|
||||
|
||||
private boolean esta_de_baja;
|
||||
|
||||
public String getPista2()
|
||||
{
|
||||
return pista2;
|
||||
}
|
||||
|
||||
public void setPista2(String lectura)
|
||||
{
|
||||
this.pista2 = lectura;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getBeneficiario()
|
||||
{
|
||||
return beneficiario;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public int getEntidadIMQ()
|
||||
{
|
||||
return entidad_imq;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public long getColectivo()
|
||||
{
|
||||
return colectivo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getContrato()
|
||||
{
|
||||
return contrato;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public long getPoliza()
|
||||
{
|
||||
return poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getTarjeta()
|
||||
{
|
||||
return tarjeta;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public boolean getValida()
|
||||
{
|
||||
return valida;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getEntidadChipcard()
|
||||
{
|
||||
return entidad_chipcard;
|
||||
}
|
||||
|
||||
public String getTarjetaDesplazado()
|
||||
{
|
||||
return tarjeta_Desplazado;
|
||||
}
|
||||
|
||||
public String getFecha_Alta_Chipcard()
|
||||
{
|
||||
return fecha_alta_chipcard;
|
||||
}
|
||||
|
||||
public boolean getEstadeBaja()
|
||||
{
|
||||
return esta_de_baja;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param beneficiario
|
||||
* @return
|
||||
*/
|
||||
public void setBeneficiario(int beneficiario)
|
||||
{
|
||||
this.beneficiario = beneficiario;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param entidad
|
||||
*/
|
||||
public void setEntidadIMQ(int entidad)
|
||||
{
|
||||
this.entidad_imq = entidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colectivo
|
||||
* @return
|
||||
*/
|
||||
public void setColectivo(long colectivo)
|
||||
{
|
||||
this.colectivo = colectivo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param contrato
|
||||
* @return
|
||||
*/
|
||||
public void setContrato(int contrato)
|
||||
{
|
||||
this.contrato = contrato;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poliza
|
||||
* @return
|
||||
*/
|
||||
public void setPoliza(long poliza)
|
||||
{
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param tarjeta
|
||||
* @return
|
||||
*/
|
||||
public void setTarjeta(int tarjeta)
|
||||
{
|
||||
this.tarjeta = tarjeta;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param buena
|
||||
*/
|
||||
public void setValida(boolean buena)
|
||||
{
|
||||
this.valida = buena;
|
||||
}
|
||||
|
||||
public void setEntidadChipcard(String entidad)
|
||||
{
|
||||
this.entidad_chipcard = entidad;
|
||||
}
|
||||
|
||||
public void setTarjetaDesplazado(String tarjeta)
|
||||
{
|
||||
this.tarjeta_Desplazado = tarjeta;
|
||||
}
|
||||
|
||||
public void setFecha_Alta_Chipcard(String fecha_alta)
|
||||
{
|
||||
this.fecha_alta_chipcard = fecha_alta;
|
||||
}
|
||||
|
||||
public void setEstadeBaja(boolean baja)
|
||||
{
|
||||
this.esta_de_baja = baja;
|
||||
}
|
||||
|
||||
/**
|
||||
* Descripción de la instancia de la clase.
|
||||
* Devuelve, en forma de String, los datos de la tarjeta de paciente.
|
||||
* @return los datos de la tarjeta
|
||||
*/
|
||||
public String toString()
|
||||
{
|
||||
StringBuffer cadena = new StringBuffer();
|
||||
|
||||
cadena.append(Utilidades.formatearEntero(tarjeta, 8));
|
||||
cadena.append(" ");
|
||||
cadena.append(Utilidades.formatearEntero(contrato, 3));
|
||||
cadena.append(" ");
|
||||
cadena.append(colectivo);
|
||||
cadena.append(" ");
|
||||
cadena.append(Utilidades.formatearEntero(poliza, 12, 0));
|
||||
cadena.append(" ");
|
||||
cadena.append(Utilidades.formatearEntero(beneficiario, 2));
|
||||
|
||||
return cadena.toString();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
/**
|
||||
* @(#) Tatarifa.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tatarifa
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int tarifa;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double importe;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getTarifa()
|
||||
{
|
||||
return this.tarifa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param tarifa
|
||||
* @return
|
||||
*/
|
||||
public void setTarifa(int tarifa)
|
||||
{
|
||||
this.tarifa = tarifa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getImporte()
|
||||
{
|
||||
return this.importe;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param importe
|
||||
* @return
|
||||
*/
|
||||
public void setImporte(double importe)
|
||||
{
|
||||
this.importe = importe;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,100 @@
|
||||
/**
|
||||
* @(#) Tatipoli.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Tatipoli
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int contrato;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int derecho;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String excl;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int carencia;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getContrato()
|
||||
{
|
||||
return this.contrato;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param contrato
|
||||
* @return
|
||||
*/
|
||||
public void setContrato(int contrato)
|
||||
{
|
||||
this.contrato = contrato;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getDerecho()
|
||||
{
|
||||
return this.derecho;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param derecho
|
||||
* @return
|
||||
*/
|
||||
public void setDerecho(int derecho)
|
||||
{
|
||||
this.derecho = derecho;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getExcl()
|
||||
{
|
||||
return this.excl;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param excl
|
||||
* @return
|
||||
*/
|
||||
public void setExcl(String excl)
|
||||
{
|
||||
this.excl = excl;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getCarencia()
|
||||
{
|
||||
return this.carencia;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param carencia
|
||||
* @return
|
||||
*/
|
||||
public void setCarencia(int carencia)
|
||||
{
|
||||
this.carencia = carencia;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,182 @@
|
||||
/**
|
||||
* @(#) Tacentro.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* Clase que mapea la tabla tavolin para almacenar los volantes de ingreso que se crean desde tarisan
|
||||
*
|
||||
* @author csm_jjripaper
|
||||
*
|
||||
*/
|
||||
public class Tavolin
|
||||
{
|
||||
private long tarjeta;
|
||||
|
||||
private String nombre;
|
||||
|
||||
private String domicilio;
|
||||
|
||||
private java.sql.Date fec_nac;
|
||||
|
||||
private String nif;
|
||||
|
||||
private int medico;
|
||||
|
||||
private String poliza;
|
||||
|
||||
private int acto;
|
||||
|
||||
private int motivo;
|
||||
|
||||
private String juicio;
|
||||
|
||||
private java.sql.Date fecha;
|
||||
|
||||
private int erroneo;
|
||||
|
||||
private int pk;
|
||||
|
||||
private String motivo_peticion;
|
||||
|
||||
public void set_tarjeta(long tar)
|
||||
{
|
||||
this.tarjeta = tar;
|
||||
}
|
||||
|
||||
public long get_tarjeta()
|
||||
{
|
||||
return this.tarjeta;
|
||||
}
|
||||
|
||||
public void set_nombre(String nom)
|
||||
{
|
||||
this.nombre = nom;
|
||||
}
|
||||
|
||||
public String get_nombre()
|
||||
{
|
||||
return this.nombre;
|
||||
}
|
||||
|
||||
public void set_domicilio(String dom)
|
||||
{
|
||||
this.domicilio = dom;
|
||||
}
|
||||
|
||||
public String get_domicilio()
|
||||
{
|
||||
return this.domicilio;
|
||||
}
|
||||
|
||||
public void set_fecnac(java.sql.Date fec_nac)
|
||||
{
|
||||
this.fec_nac = fec_nac;
|
||||
}
|
||||
|
||||
public java.sql.Date get_fecnac()
|
||||
{
|
||||
return this.fec_nac;
|
||||
}
|
||||
|
||||
public void set_nif(String dni)
|
||||
{
|
||||
this.nif = dni;
|
||||
}
|
||||
|
||||
public String get_nif()
|
||||
{
|
||||
return this.nif;
|
||||
}
|
||||
|
||||
public void set_medico(int prescrip)
|
||||
{
|
||||
this.medico = prescrip;
|
||||
}
|
||||
|
||||
public int get_medico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
public void set_poliza(String pol)
|
||||
{
|
||||
this.poliza = pol;
|
||||
}
|
||||
|
||||
public String get_poliza()
|
||||
{
|
||||
return this.poliza;
|
||||
}
|
||||
|
||||
public void set_acto(int act)
|
||||
{
|
||||
this.acto = act;
|
||||
}
|
||||
|
||||
public int get_acto()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
public void set_motivo(int motiv)
|
||||
{
|
||||
this.motivo = motiv;
|
||||
}
|
||||
|
||||
public int get_motivo()
|
||||
{
|
||||
return this.motivo;
|
||||
}
|
||||
|
||||
public void set_juicio(String inf)
|
||||
{
|
||||
this.juicio = inf;
|
||||
}
|
||||
|
||||
public String get_juicio()
|
||||
{
|
||||
return this.juicio;
|
||||
}
|
||||
|
||||
public void set_fecha(java.sql.Date fec)
|
||||
{
|
||||
this.fecha = fec;
|
||||
}
|
||||
|
||||
public java.sql.Date get_fecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
public void set_erroneo(int error)
|
||||
{
|
||||
this.erroneo = error;
|
||||
}
|
||||
|
||||
public int get_erroneo()
|
||||
{
|
||||
return this.erroneo;
|
||||
}
|
||||
|
||||
public void set_pk(int next)
|
||||
{
|
||||
this.pk = next;
|
||||
}
|
||||
|
||||
public int get_pk()
|
||||
{
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
public void set_motivo_peticion(String peticion)
|
||||
{
|
||||
this.motivo_peticion = peticion;
|
||||
}
|
||||
|
||||
public String get_motivo_peticion()
|
||||
{
|
||||
return this.motivo_peticion;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,159 @@
|
||||
/**
|
||||
* @(#) ttactmed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Ttactmed
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double precio;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String autoprescrip;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int derecho;
|
||||
|
||||
/**
|
||||
* El nivel del acto, 0 no se ve, 1 se ve y se pide sin problema, 2 se ve pero hay que justificar por que se pide
|
||||
*/
|
||||
private int visibilidad;
|
||||
|
||||
public int getVisibilidad()
|
||||
{
|
||||
return this.visibilidad;
|
||||
}
|
||||
|
||||
public void setVisibilidad(int visi)
|
||||
{
|
||||
this.visibilidad = visi;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcion()
|
||||
{
|
||||
return this.descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcion(String descripcion)
|
||||
{
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPrecio()
|
||||
{
|
||||
return this.precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param precio
|
||||
* @return
|
||||
*/
|
||||
public void setPrecio(double precio)
|
||||
{
|
||||
this.precio = precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getAutoprescrip()
|
||||
{
|
||||
return this.autoprescrip;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autoprescrip
|
||||
* @return
|
||||
*/
|
||||
public void setAutoprescrip(String autoprescrip)
|
||||
{
|
||||
this.autoprescrip = autoprescrip;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getDerecho()
|
||||
{
|
||||
return this.derecho;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param derecho
|
||||
* @return
|
||||
*/
|
||||
public void setDerecho(int derecho)
|
||||
{
|
||||
this.derecho = derecho;
|
||||
}
|
||||
|
||||
public Ttactmed()
|
||||
{
|
||||
visibilidad=1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,140 @@
|
||||
/**
|
||||
* @(#) ttactmed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class TtactmedGPC
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int omc;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion_gpc;
|
||||
/**
|
||||
*/
|
||||
private String justifi_deter;
|
||||
/**
|
||||
*/
|
||||
private String justificacionInforme;
|
||||
/**
|
||||
*/
|
||||
private String justificacionPrescripcion;
|
||||
|
||||
/**
|
||||
* El nivel del acto, 0 no se ve, 1 se ve y se pide sin problema, 2 se ve pero hay que justificar por que se pide
|
||||
*/
|
||||
|
||||
/**
|
||||
* @return the especialidad
|
||||
*/
|
||||
public int getEspecialidad() {
|
||||
return especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad the especialidad to set
|
||||
*/
|
||||
public void setEspecialidad(int especialidad) {
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the acto
|
||||
*/
|
||||
public int getActo() {
|
||||
return acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto the acto to set
|
||||
*/
|
||||
public void setActo(int acto) {
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the omc
|
||||
*/
|
||||
public int getOmc() {
|
||||
return omc;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param omc the omc to set
|
||||
*/
|
||||
public void setOmc(int omc) {
|
||||
this.omc = omc;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the descripcion_gpc
|
||||
*/
|
||||
public String getDescripcion_gpc() {
|
||||
return descripcion_gpc;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion_gpc the descripcion_gpc to set
|
||||
*/
|
||||
public void setDescripcion_gpc(String descripcion_gpc) {
|
||||
this.descripcion_gpc = descripcion_gpc;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the justifi_deter
|
||||
*/
|
||||
public String getJustifi_deter() {
|
||||
return justifi_deter;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param justifi_deter the justifi_deter to set
|
||||
*/
|
||||
public void setJustifi_deter(String justifi_deter) {
|
||||
this.justifi_deter = justifi_deter;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the justificacion
|
||||
*/
|
||||
public String getJustificacionInforme() {
|
||||
return justificacionInforme;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param justificacion the justificacion to set
|
||||
*/
|
||||
public void setJustificacionInforme(String justificacionInforme) {
|
||||
this.justificacionInforme = justificacionInforme;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the justificacionPrescripcion
|
||||
*/
|
||||
public String getJustificacionPrescripcion() {
|
||||
return justificacionPrescripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param justificacionPrescripcion the justificacionPrescripcion to set
|
||||
*/
|
||||
public void setJustificacionPrescripcion(String justificacionPrescripcion) {
|
||||
this.justificacionPrescripcion = justificacionPrescripcion;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,154 @@
|
||||
/**
|
||||
* @(#) Vtapresca_tarisanttactmed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
|
||||
|
||||
/**
|
||||
* Entidad <code>Ttrayos</code> utilizada para representar los datos pertenecientes a las tablas de NOVAHIS para radiodiagnosticos.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>.
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class Ttrayos
|
||||
{
|
||||
|
||||
/**
|
||||
* Fecha.
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
* Número de historia clínica.
|
||||
*/
|
||||
private String nhc;
|
||||
|
||||
/**
|
||||
* Número de episodio.
|
||||
*/
|
||||
private int episodio;
|
||||
|
||||
/**
|
||||
* Número de episodio Encriptado.
|
||||
*/
|
||||
private String episodioEncriptado;
|
||||
|
||||
/**
|
||||
* Código del médico que realiza la prescripción del radiodiagnóstico.
|
||||
*/
|
||||
private String prescriptor;
|
||||
|
||||
/**
|
||||
* Descripción de la prueba realizada.
|
||||
*/
|
||||
private String prueba;
|
||||
|
||||
/**
|
||||
* Número de peticion
|
||||
*/
|
||||
private String peticion;
|
||||
|
||||
/**
|
||||
* Número de peticion Encriptada.
|
||||
*/
|
||||
private String peticionEncriptada;
|
||||
|
||||
|
||||
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
|
||||
public String getPrescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
|
||||
public void setPrescriptor(String prescriptor)
|
||||
{
|
||||
this.prescriptor = prescriptor;
|
||||
}
|
||||
|
||||
|
||||
public String getNhc()
|
||||
{
|
||||
return this.nhc;
|
||||
}
|
||||
|
||||
|
||||
public void setNhc(String nhc)
|
||||
{
|
||||
this.nhc = nhc;
|
||||
}
|
||||
|
||||
public int getEpisodio()
|
||||
{
|
||||
return this.episodio;
|
||||
}
|
||||
|
||||
|
||||
public void setEpisodio(int episodio)
|
||||
{
|
||||
this.episodio = episodio;
|
||||
}
|
||||
|
||||
|
||||
public String getPrueba()
|
||||
{
|
||||
return this.prueba;
|
||||
}
|
||||
|
||||
|
||||
public void setPrueba(String prueba)
|
||||
{
|
||||
this.prueba = prueba;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the episodioEncriptado
|
||||
*/
|
||||
public String getEpisodioEncriptado() {
|
||||
return episodioEncriptado;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param episodioEncriptado the episodioEncriptado to set
|
||||
*/
|
||||
public void setEpisodioEncriptado(String episodioEncriptado) {
|
||||
this.episodioEncriptado = episodioEncriptado;
|
||||
}
|
||||
|
||||
|
||||
public String getPeticion() {
|
||||
return peticion;
|
||||
}
|
||||
|
||||
|
||||
public void setPeticion(String peticion) {
|
||||
this.peticion = peticion;
|
||||
}
|
||||
|
||||
|
||||
public String getPeticionEncriptada() {
|
||||
return peticionEncriptada;
|
||||
}
|
||||
|
||||
|
||||
public void setPeticionEncriptada(String peticionEncriptada) {
|
||||
this.peticionEncriptada = peticionEncriptada;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,347 @@
|
||||
/**
|
||||
* @(#) Usuario.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.Date;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
/**
|
||||
* Usuario (médico) conectado a la aplicación Tarisan.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class Usuario implements Serializable
|
||||
{
|
||||
/**
|
||||
*/
|
||||
private int medico;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int tarifa;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String nombreCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String direccionCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int cpCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String telefonoCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String poblacionCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String colegiadoCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String especialidadCab;
|
||||
|
||||
/**
|
||||
*/
|
||||
private Date fechaCaducidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private Timestamp fechaUltAcceso;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String emailCab;
|
||||
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getMedico()
|
||||
{
|
||||
return this.medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param medico
|
||||
* @return
|
||||
*/
|
||||
public void setMedico(int medico)
|
||||
{
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getNombre()
|
||||
{
|
||||
if (this.nombre==null)
|
||||
return "";
|
||||
else
|
||||
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 getNombreCab()
|
||||
{
|
||||
if (this.nombreCab==null)
|
||||
return "";
|
||||
else
|
||||
return this.nombreCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param nombreCab
|
||||
* @return
|
||||
*/
|
||||
public void setNombreCab(String nombreCab)
|
||||
{
|
||||
this.nombreCab = nombreCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDireccionCab()
|
||||
{
|
||||
if (this.direccionCab==null)
|
||||
return "";
|
||||
else
|
||||
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()
|
||||
{
|
||||
if (this.telefonoCab==null)
|
||||
return "";
|
||||
else
|
||||
return this.telefonoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param telefonoCab
|
||||
* @return
|
||||
*/
|
||||
public void setTelefonoCab(String telefonoCab)
|
||||
{
|
||||
this.telefonoCab = telefonoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getPoblacionCab()
|
||||
{
|
||||
if (this.poblacionCab==null)
|
||||
return "";
|
||||
else
|
||||
return this.poblacionCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param poblacionCab
|
||||
* @return
|
||||
*/
|
||||
public void setPoblacionCab(String poblacionCab)
|
||||
{
|
||||
this.poblacionCab = poblacionCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getColegiadoCab()
|
||||
{
|
||||
if (this.colegiadoCab==null)
|
||||
return "";
|
||||
else
|
||||
return this.colegiadoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param colegiadoCab
|
||||
* @return
|
||||
*/
|
||||
public void setColegiadoCab(String colegiadoCab)
|
||||
{
|
||||
this.colegiadoCab = colegiadoCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getEspecialidadCab()
|
||||
{
|
||||
if (this.especialidadCab==null)
|
||||
return "";
|
||||
else
|
||||
return this.especialidadCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidadCab
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidadCab(String especialidadCab)
|
||||
{
|
||||
this.especialidadCab = especialidadCab;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public Date getFechaCaducidad()
|
||||
{
|
||||
return this.fechaCaducidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fechaCaducidad
|
||||
* @return
|
||||
*/
|
||||
public void setFechaCaducidad(Date fechaCaducidad)
|
||||
{
|
||||
this.fechaCaducidad = fechaCaducidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public Timestamp getFechaUltAcceso()
|
||||
{
|
||||
return this.fechaUltAcceso;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param fechaUltAcceso
|
||||
* @return
|
||||
*/
|
||||
public void setFechaUltAcceso(Timestamp fechaUltAcceso)
|
||||
{
|
||||
this.fechaUltAcceso = fechaUltAcceso;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Descripción de la instancia de la clase.
|
||||
* Devuelve, en forma de String, los datos del usuario conectado a Tarisan (nombre y appellidos del Doctor).
|
||||
* @return los datos del usuario conectado
|
||||
*/
|
||||
public String toString()
|
||||
{
|
||||
StringBuffer cadena = new StringBuffer();
|
||||
|
||||
cadena.append("Dr(a). ");
|
||||
cadena.append(nombre);
|
||||
|
||||
return cadena.toString();
|
||||
}
|
||||
|
||||
public String getEmailCab() {
|
||||
if (this.emailCab==null)
|
||||
return "";
|
||||
else
|
||||
return this.emailCab;
|
||||
}
|
||||
|
||||
public void setEmailCab(String emailCab) {
|
||||
this.emailCab = emailCab;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,283 @@
|
||||
/**
|
||||
* @(#) VTamovextTaclient.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* Entidad <code>VTamovextTaclient</code> utilizada para representar los datos pertenecientes a las tablas TAMOVEXT y ttclient.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class VTamovextTaclient
|
||||
{
|
||||
|
||||
/**
|
||||
* Fecha en la que se ha realizado el acto médico.
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
* Nombre del titular de la póliza.
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
* Apellidos del titular de la póliza.
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
* Descripción del acto médico.
|
||||
*/
|
||||
private String descripcionActoMedico;
|
||||
|
||||
/**
|
||||
* Precio del acto médico.
|
||||
*/
|
||||
private double precioActoMedico;
|
||||
|
||||
/**
|
||||
* nº del acto médico.
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
private int numseq;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int colec;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double poliza;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int orden;
|
||||
|
||||
private int medico;
|
||||
|
||||
private int especialidad;
|
||||
|
||||
private long autorizacion;
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>fecha</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @return Valor del atributo <code>fecha</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>fecha</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @param fecha Fecha en la que se ha realizado el acto médico.
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>nombre</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @return Valor del atributo <code>nombre</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
*/
|
||||
public String getNombre()
|
||||
{
|
||||
return this.nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>nombre</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @param nombre Nombre del titular de la póliza.
|
||||
*/
|
||||
public void setNombre(String nombre)
|
||||
{
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @return Valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
*/
|
||||
public String getApellidos()
|
||||
{
|
||||
return this.apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @param apellidos Apellidos del titular de la póliza.
|
||||
*/
|
||||
public void setApellidos(String apellidos)
|
||||
{
|
||||
this.apellidos = apellidos;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @return Valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
*/
|
||||
public String getDescripcionActoMedico()
|
||||
{
|
||||
return this.descripcionActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @param descripcionActoMedico Descripción del acto médico.
|
||||
*/
|
||||
public void setDescripcionActoMedico(String descripcionActoMedico)
|
||||
{
|
||||
this.descripcionActoMedico = descripcionActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>precioActoMedico</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @return Valor del atributo <code>precioActoMedico</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
*/
|
||||
public double getPrecioActoMedico()
|
||||
{
|
||||
return this.precioActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>precioActoMedico</code> perteneciente a la clase <code>VTamovextTaclient</code>.
|
||||
* @param precioActoMedico Precio del acto médico.
|
||||
*/
|
||||
public void setPrecioActoMedico(double precioActoMedico)
|
||||
{
|
||||
this.precioActoMedico = precioActoMedico;
|
||||
}
|
||||
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the numseq
|
||||
*/
|
||||
public int getNumseq() {
|
||||
return numseq;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param numseq the numseq to set
|
||||
*/
|
||||
public void setNumseq(int numseq) {
|
||||
this.numseq = numseq;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the colec
|
||||
*/
|
||||
public int getColec() {
|
||||
return colec;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param colec the colec to set
|
||||
*/
|
||||
public void setColec(int colec) {
|
||||
this.colec = colec;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the poliza
|
||||
*/
|
||||
public double getPoliza() {
|
||||
return poliza;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param poliza the poliza to set
|
||||
*/
|
||||
public void setPoliza(double poliza) {
|
||||
this.poliza = poliza;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the orden
|
||||
*/
|
||||
public int getOrden() {
|
||||
return orden;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param orden the orden to set
|
||||
*/
|
||||
public void setOrden(int orden) {
|
||||
this.orden = orden;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the medico
|
||||
*/
|
||||
public int getMedico() {
|
||||
return medico;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param medico the medico to set
|
||||
*/
|
||||
public void setMedico(int medico) {
|
||||
this.medico = medico;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the especialidad
|
||||
*/
|
||||
public int getEspecialidad() {
|
||||
return especialidad;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param especialidad the especialidad to set
|
||||
*/
|
||||
public void setEspecialidad(int especialidad) {
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the autorizacion
|
||||
*/
|
||||
public long getAutorizacion() {
|
||||
return autorizacion;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param autorizacion the autorizacion to set
|
||||
*/
|
||||
public void setAutorizacion(long autorizacion) {
|
||||
this.autorizacion = autorizacion;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,134 @@
|
||||
/**
|
||||
* @(#) VTamovextttactmed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* Entidad <code>VTamovextttactmed</code> utilizada para representar los datos pertenecientes a las tablas TAMOVEXT y ttactmed.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>.
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class VTamovextTtactmed
|
||||
{
|
||||
|
||||
/**
|
||||
* Código del acto médico.
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
* Valor numérico que representa la cantidad de veces que el paciente ha realizado el acto médico representado en esta clase.
|
||||
*/
|
||||
private int cantidad;
|
||||
|
||||
/**
|
||||
* Descripción del acto médico.
|
||||
*/
|
||||
private String descripcionActoMedico;
|
||||
|
||||
/**
|
||||
* Precio del acto médico.
|
||||
*/
|
||||
private double precioActoMedico ;
|
||||
|
||||
/**
|
||||
* Importe del acto médico.
|
||||
* <br>Este importe se obtiene realizando la operación <code>cantidad * precioActoMedico</code>.
|
||||
*/
|
||||
private double importeActoMedico;
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>acto</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @return Valor del atributo <code>acto</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>acto</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @param acto Código del acto médico.
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @return Valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
*/
|
||||
public String getDescripcionActoMedico()
|
||||
{
|
||||
return this.descripcionActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>acto</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @param descripcionActoMedico Descripción del acto médico.
|
||||
*/
|
||||
public void setDescripcionActoMedico(String descripcionActoMedico)
|
||||
{
|
||||
this.descripcionActoMedico = descripcionActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>precioActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @return Valor del atributo <code>precioActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
*/
|
||||
public double getPrecioActoMedico()
|
||||
{
|
||||
return this.precioActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>precioActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @param precioActoMedico Precio del acto médico.
|
||||
*/
|
||||
public void setPrecioActoMedico(double precioActoMedico)
|
||||
{
|
||||
this.precioActoMedico = precioActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>cantidad</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @return Valor del atributo <code>cantidad</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
*/
|
||||
public int getCantidad()
|
||||
{
|
||||
return this.cantidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>cantidad</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @param cantidad La cantidad de veces que el paciente ha realizado el acto médico representado en esta clase.
|
||||
*/
|
||||
public void setCantidad(int cantidad)
|
||||
{
|
||||
this.cantidad = cantidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>importeActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @return Valor del atributo <code>importeActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
*/
|
||||
public double getImporteActoMedico()
|
||||
{
|
||||
return this.importeActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>importeActoMedico</code> perteneciente a la clase <code>VTamovextttactmed</code>.
|
||||
* @param importeActoMedico Importe del acto médico.
|
||||
*/
|
||||
public void setImporteActoMedico(double importeActoMedico)
|
||||
{
|
||||
this.importeActoMedico = importeActoMedico;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,112 @@
|
||||
/**
|
||||
* @(#) Vtapresca_tarisanttactmed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* Entidad <code>Vtapresca_tarisanttactmed</code> utilizada para representar los datos pertenecientes a las tablas tapresca_tarisan y ttactmed.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>.
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class VTapresca_Ttactmed
|
||||
{
|
||||
|
||||
/**
|
||||
* Código del acto médico.
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
* Código del médico que realiza la prescripción del análisis.
|
||||
*/
|
||||
private int prescriptor;
|
||||
|
||||
/**
|
||||
* Descripción del acto médico.
|
||||
*/
|
||||
private String descripcionActoMedico;
|
||||
|
||||
/**
|
||||
* Campo textual utilizado por el médico para introducir un pequeño informe sobre la prescripción realizada al paciente.
|
||||
*/
|
||||
private String informe;
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>acto</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @return Valor del atributo <code>acto</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>acto</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @param acto Código del acto médico.
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>prescriptor</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @return Valor del atributo <code>prescriptor</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
*/
|
||||
public int getPrescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>prescriptor</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @param prescriptor Código del médico que realiza la prescripción del análisis.
|
||||
*/
|
||||
public void setPrescriptor(int prescriptor)
|
||||
{
|
||||
this.prescriptor = prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @return Valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
*/
|
||||
public String getDescripcionActoMedico()
|
||||
{
|
||||
return this.descripcionActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>descripcionActoMedico</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @param descripcionActoMedico Descripción del acto médico.
|
||||
*/
|
||||
public void setDescripcionActoMedico(String descripcionActoMedico)
|
||||
{
|
||||
this.descripcionActoMedico = descripcionActoMedico;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>informe</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @return Valor del atributo <code>informe</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
*/
|
||||
public String getInforme()
|
||||
{
|
||||
return this.informe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>informe</code> perteneciente a la clase <code>Vtapresca_tarisanttactmed</code>.
|
||||
* @param informe Informe sobre la prescripción realizada al paciente.
|
||||
*/
|
||||
public void setInforme(String informe)
|
||||
{
|
||||
if (informe==null)
|
||||
this.informe="";
|
||||
else
|
||||
this.informe = informe;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
/**
|
||||
* @(#) VTaprescrTamedico.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* Entidad <code>VTaprescrTamedico</code> utilizada para representar los datos pertenecientes a las tablas TAPRESCR y TAMEDICO.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>.
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class VTaprescrTamedico
|
||||
{
|
||||
|
||||
/**
|
||||
* Nombre del médico que ha realizado la prescripción.
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
* Apellidos del médico que ha realizado la prescripción.
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
* Importe de la prescripción realizada.
|
||||
*/
|
||||
private double importe;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
* @return Valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
*/
|
||||
public String getNombre()
|
||||
{
|
||||
return this.nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>acto</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
* @param nombre Nombre del médico que ha realizado la prescripción.
|
||||
*/
|
||||
public void setNombre(String nombre)
|
||||
{
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
* @return Valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
*/
|
||||
public String getApellidos()
|
||||
{
|
||||
return this.apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
* @param apellidos Apellidos del médico que ha realizado la prescripción.
|
||||
*/
|
||||
public void setApellidos(String apellidos)
|
||||
{
|
||||
this.apellidos = apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>importe</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
* @return Valor del atributo <code>importe</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
*/
|
||||
public double getImporte()
|
||||
{
|
||||
return this.importe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaprescrTamedico</code>.
|
||||
* @param importe Importe de la prescripción realizada.
|
||||
*/
|
||||
public void setImporte(double importe)
|
||||
{
|
||||
this.importe = importe;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,112 @@
|
||||
/**
|
||||
* @(#) VTaresanaTaclient.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* Entidad <code>VTaresanaTaclient</code> utilizada para representar los datos pertenecientes a las tablas TARESANA y ttclient.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>.
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class VTaresanaTaclient
|
||||
{
|
||||
|
||||
/**
|
||||
* Fecha en la que se ha realizado el análisis.
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
* Nombre del paciente que ha realizado el análisis.
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
* Apellidos del paciente que ha realizado el análisis.
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
* Código de la autorización asignado al análisis realizado.
|
||||
*/
|
||||
private int autorizacion;
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>fecha</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @return Valor del atributo <code>fecha</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>fecha</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @param fecha Fecha en la que se ha realizado el análisis.
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @return Valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
*/
|
||||
public String getNombre()
|
||||
{
|
||||
return this.nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @param nombre Nombre del paciente que ha realizado el análisis.
|
||||
*/
|
||||
public void setNombre(String nombre)
|
||||
{
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @return Valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
*/
|
||||
public String getApellidos()
|
||||
{
|
||||
return this.apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @param apellidos Apellidos del paciente que ha realizado el análisis.
|
||||
*/
|
||||
public void setApellidos(String apellidos)
|
||||
{
|
||||
this.apellidos = apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>autorizacion</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @return Valor del atributo <code>autorizacion</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
*/
|
||||
public int getAutorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>autorizacion</code> perteneciente a la clase <code>VTaresanaTaclient</code>.
|
||||
* @param autorizacion Código de la autorización asignado al análisis.
|
||||
*/
|
||||
public void setAutorizacion(int autorizacion)
|
||||
{
|
||||
this.autorizacion = autorizacion;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,275 @@
|
||||
/**
|
||||
* @(#) VTaresanaTamedico.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
* Entidad <code>VTaresanaTamedico</code> utilizada para representar los datos pertenecientes a las tablas TARESANA y TAMEDICO.
|
||||
* @author <a href="mailto:sistemas@imqnavarra.com">Dpto. Informática</a>.
|
||||
* @version 1.0, 24/09/2003
|
||||
*/
|
||||
public class VTaresanaTamedico
|
||||
{
|
||||
|
||||
/**
|
||||
* Nombre del médico que ha realizado el análisis.
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
* Apellidos del médico que ha realizado el análisis.
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
* Código del médico que ha realizado el análisis
|
||||
*/
|
||||
private int prescriptor;
|
||||
|
||||
/**
|
||||
* Fecha en la que se ha realizado el análisis.
|
||||
*/
|
||||
private java.sql.Date fecha;
|
||||
|
||||
/**
|
||||
* Código de la autorización asignado al análisis realizado.
|
||||
*/
|
||||
private long autorizacion;
|
||||
|
||||
/**
|
||||
* Código de la autorización encriptada asignado al análisis realizado.
|
||||
*/
|
||||
private String autorizacionEncriptada;
|
||||
|
||||
/**
|
||||
* Número que indica si la petición está en GPC y TARISAN.
|
||||
*/
|
||||
private String igualada;
|
||||
|
||||
/**
|
||||
* Número que indica si la petición está en GPC y TARISAN (encriptada).
|
||||
*/
|
||||
private String igualadaEncriptada;
|
||||
|
||||
/**
|
||||
* Número que indica si la analítica está pendiente de extracción o no.
|
||||
*/
|
||||
private int extraccion;
|
||||
|
||||
/**
|
||||
* Número de episodio de la peticion (ap).
|
||||
*/
|
||||
private int episodio;
|
||||
|
||||
/**
|
||||
* Número de episodio de la peticion (ap) (encriptado).
|
||||
*/
|
||||
private String episodioEncriptado;
|
||||
|
||||
/**
|
||||
* Boolenao que indica si es de las nuevas peticiones (con guión) o no.
|
||||
*/
|
||||
private boolean peticionConGuion;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>peticionConGuion</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @return Valor del atributo <code>peticionConGuion</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
*/
|
||||
public boolean isPeticionConGuion() {
|
||||
return peticionConGuion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>peticionConGuion</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @param peticionConGuion Indica si la petición tiene un guión o no.
|
||||
*/
|
||||
public void setPeticionConGuion(boolean peticionConGuion) {
|
||||
this.peticionConGuion = peticionConGuion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @return Valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
*/
|
||||
public String getNombre()
|
||||
{
|
||||
return this.nombre;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @param nombre Nombre del médico que ha realizado el análisis.
|
||||
*/
|
||||
public void setNombre(String nombre)
|
||||
{
|
||||
this.nombre = nombre;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @return Valor del atributo <code>apellidos</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
*/
|
||||
public String getApellidos()
|
||||
{
|
||||
return this.apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>nombre</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @param nombre Apellidos del médico que ha realizado el análisis.
|
||||
*/
|
||||
public void setApellidos(String apellidos)
|
||||
{
|
||||
this.apellidos = apellidos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>fecha</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @return Valor del atributo <code>fecha</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
*/
|
||||
public java.sql.Date getFecha()
|
||||
{
|
||||
return this.fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>fecha</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @param fecha Fecha en la que se ha realizado el análisis.
|
||||
*/
|
||||
public void setFecha(java.sql.Date fecha)
|
||||
{
|
||||
this.fecha = fecha;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>autorizacion</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @return Valor del atributo <code>autorizacion</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
*/
|
||||
public long getAutorizacion()
|
||||
{
|
||||
return this.autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>autorizacion</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @param autorizacion Código de la autorización asignado al análisis.
|
||||
*/
|
||||
public void setAutorizacion(long autorizacion)
|
||||
{
|
||||
this.autorizacion = autorizacion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>prescriptor</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @return Valor del atributo <code>prescriptor</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
*/
|
||||
public int getPrescriptor()
|
||||
{
|
||||
return this.prescriptor;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>prescriptor</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @param autorizacion Código del prescriptor asignado al análisis.
|
||||
*/
|
||||
public void setPrescriptor(int prescrip)
|
||||
{
|
||||
this.prescriptor = prescrip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para obtener el valor del atributo <code>igualada</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @return Valor del atributo <code>igualada</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
*/
|
||||
public String getIgualada()
|
||||
{
|
||||
return this.igualada;
|
||||
}
|
||||
|
||||
/**
|
||||
* Método que sirve para establecer al valor del atributo <code>igualada</code> perteneciente a la clase <code>VTaresanaTamedico</code>.
|
||||
* @param igualada Para saber si el análisis está relacionado entre gpc y tarisan por PETIN
|
||||
*/
|
||||
public void setIgualada(String igualada)
|
||||
{
|
||||
this.igualada = igualada;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the extraccion
|
||||
*/
|
||||
public int getExtraccion() {
|
||||
return extraccion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param extraccion the extraccion to set
|
||||
*/
|
||||
public void setExtraccion(int extraccion) {
|
||||
this.extraccion = extraccion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the autorizacionEncriptada
|
||||
*/
|
||||
public String getAutorizacionEncriptada() {
|
||||
return autorizacionEncriptada;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autorizacionEncriptada the autorizacionEncriptada to set
|
||||
*/
|
||||
public void setAutorizacionEncriptada(String autorizacionEncriptada) {
|
||||
this.autorizacionEncriptada = autorizacionEncriptada;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the igualadaEncriptada
|
||||
*/
|
||||
public String getIgualadaEncriptada() {
|
||||
return igualadaEncriptada;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param igualadaEncriptada the igualadaEncriptada to set
|
||||
*/
|
||||
public void setIgualadaEncriptada(String igualadaEncriptada) {
|
||||
this.igualadaEncriptada = igualadaEncriptada;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the episodio
|
||||
*/
|
||||
public int getEpisodio() {
|
||||
return episodio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param episodio the episodio to set
|
||||
*/
|
||||
public void setEpisodio(int episodio) {
|
||||
this.episodio = episodio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the episodioEncriptado
|
||||
*/
|
||||
public String getEpisodioEncriptado() {
|
||||
return episodioEncriptado;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param episodioEncriptado the episodioEncriptado to set
|
||||
*/
|
||||
public void setEpisodioEncriptado(String episodioEncriptado) {
|
||||
this.episodioEncriptado = episodioEncriptado;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,185 @@
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
import java.sql.Date;
|
||||
import java.util.Calendar;
|
||||
|
||||
public class VTtbancosTamedico {
|
||||
|
||||
/**
|
||||
* Nif del médico/banco.
|
||||
*/
|
||||
private String nif;
|
||||
|
||||
/**
|
||||
* Nombre del médico.
|
||||
*/
|
||||
private String nombre;
|
||||
|
||||
/**
|
||||
* Apellidos del médico.
|
||||
*/
|
||||
private String apellidos;
|
||||
|
||||
/**
|
||||
* direccion del médico.
|
||||
*/
|
||||
private String direccion;
|
||||
|
||||
/**
|
||||
* cp del médico.
|
||||
*/
|
||||
private String cp;
|
||||
|
||||
/**
|
||||
* poblacion del médico.
|
||||
*/
|
||||
private String poblacion;
|
||||
|
||||
/**
|
||||
* descripcion del banco.
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
/**
|
||||
* iban_sucursal del banco.
|
||||
*/
|
||||
private int iban_sucursal;
|
||||
|
||||
/**
|
||||
* iban_cuenta del banco.
|
||||
*/
|
||||
private String iban_cuenta;
|
||||
|
||||
/**
|
||||
* mes.
|
||||
*/
|
||||
private String mes;
|
||||
|
||||
/**
|
||||
* fecha_factura del medico.
|
||||
*/
|
||||
private Date fecha_factura;
|
||||
|
||||
/**
|
||||
* factura del medico.
|
||||
*/
|
||||
private int factura;
|
||||
|
||||
/**
|
||||
* cla del medico.
|
||||
*/
|
||||
private String cla;
|
||||
|
||||
|
||||
public String getNif() {
|
||||
return nif;
|
||||
}
|
||||
public void setNif(String nif) {
|
||||
this.nif = nif;
|
||||
}
|
||||
public String getNombre() {
|
||||
return nombre;
|
||||
}
|
||||
public void setNombre(String nombre) {
|
||||
this.nombre = nombre;
|
||||
}
|
||||
public String getApellidos() {
|
||||
return apellidos;
|
||||
}
|
||||
public void setApellidos(String apellidos) {
|
||||
this.apellidos = apellidos;
|
||||
}
|
||||
public String getDireccion() {
|
||||
return direccion;
|
||||
}
|
||||
public void setDireccion(String direccion) {
|
||||
this.direccion = direccion;
|
||||
}
|
||||
public String getCp() {
|
||||
return cp;
|
||||
}
|
||||
public void setCp(String cp) {
|
||||
this.cp = cp;
|
||||
}
|
||||
public String getPoblacion() {
|
||||
return poblacion;
|
||||
}
|
||||
public void setPoblacion(String poblacion) {
|
||||
this.poblacion = poblacion;
|
||||
}
|
||||
public String getDescripcion() {
|
||||
return descripcion;
|
||||
}
|
||||
public void setDescripcion(String descripcion) {
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
public int getIban_sucursal() {
|
||||
return iban_sucursal;
|
||||
}
|
||||
public void setIban_sucursal(int iban_sucursal) {
|
||||
this.iban_sucursal = iban_sucursal;
|
||||
}
|
||||
public String getIban_cuenta() {
|
||||
return iban_cuenta;
|
||||
}
|
||||
public void setIban_cuenta(String iban_cuenta) {
|
||||
this.iban_cuenta = iban_cuenta;
|
||||
}
|
||||
/**
|
||||
* @return the mes
|
||||
*/
|
||||
public String getMes() {
|
||||
return mes;
|
||||
}
|
||||
/**
|
||||
* @param mes the mes to set
|
||||
*/
|
||||
public void setMes(String mes) {
|
||||
this.mes = mes;
|
||||
}
|
||||
/**
|
||||
* @return the fecha_factura
|
||||
*/
|
||||
public Date getFecha_factura() {
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
return (this.fecha_factura == null)?esNula:this.fecha_factura;
|
||||
}
|
||||
/**
|
||||
* @param fecha_factura the fecha_factura to set
|
||||
*/
|
||||
public void setFecha_factura(Date fecha_factura) {
|
||||
Calendar nuevo = Calendar.getInstance();
|
||||
nuevo.set(1900, 1, 1);
|
||||
Date esNula = new Date(nuevo.getTimeInMillis());
|
||||
this.fecha_factura = (fecha_factura == null)?esNula:fecha_factura;
|
||||
}
|
||||
/**
|
||||
* @return the factura
|
||||
*/
|
||||
public int getFactura() {
|
||||
return factura;
|
||||
}
|
||||
/**
|
||||
* @param factura the factura to set
|
||||
*/
|
||||
public void setFactura(int factura) {
|
||||
this.factura = factura;
|
||||
}
|
||||
/**
|
||||
* @return the cla
|
||||
*/
|
||||
public String getCla() {
|
||||
return cla;
|
||||
}
|
||||
/**
|
||||
* @param cla the cla to set
|
||||
*/
|
||||
public void setCla(String cla) {
|
||||
this.cla = cla;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user