From 9f912ac7b8e7a069c341bd77cff9f6a5c4058ce0 Mon Sep 17 00:00:00 2001 From: "eduardo.dicarde" Date: Mon, 21 Dec 2015 21:03:49 +0000 Subject: [PATCH] fixed bug #6497 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@51457 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Conexion.java | 10 ++++++++++ .../ventaboletos/entidad/ConexionCtrl.java | 10 ++++++++++ 2 files changed, 20 insertions(+) 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() { }