/** * @(#) 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; } }