182 lines
2.3 KiB
Java
182 lines
2.3 KiB
Java
/**
|
|
* @(#) 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;
|
|
}
|
|
} |