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