diff --git a/src/com/rjconsultores/ventaboletos/entidad/Conexion.java b/src/com/rjconsultores/ventaboletos/entidad/Conexion.java index ef1d3e971..06a0aed95 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Conexion.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Conexion.java @@ -49,6 +49,16 @@ public class Conexion implements Serializable { private Integer destinoId; @Column(name = "CONEXIONCTRL_ID") private Long conexionctrlId; + @Column(name = "CORRIDA_ID") + private Long corridaId; + + public Long getCorridaId() { + return corridaId; + } + + public void setCorridaId(Long corridaId) { + this.corridaId = corridaId; + } public Conexion() { } diff --git a/src/com/rjconsultores/ventaboletos/entidad/ConexionCtrl.java b/src/com/rjconsultores/ventaboletos/entidad/ConexionCtrl.java index 0c2fc0132..f44095e95 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/ConexionCtrl.java +++ b/src/com/rjconsultores/ventaboletos/entidad/ConexionCtrl.java @@ -41,6 +41,16 @@ public class ConexionCtrl implements Serializable { private Integer origenId; @Column(name = "DESTINO_ID") private Integer destinoId; + @Column(name = "INDFIXA") + private Integer indfixa; + + public Integer getIndfixa() { + return indfixa; + } + + public void setIndfixa(Integer indfixa) { + this.indfixa = indfixa; + } public ConexionCtrl() { }