Añado los fuentes de java
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user