From 138afb3cb3daf1283b2f12d755ebd9b5f7ef6ea5 Mon Sep 17 00:00:00 2001 From: "thiago.penido" Date: Thu, 8 Oct 2015 19:25:05 +0000 Subject: [PATCH] Campo numero linha RioCard bug 6709 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@48788 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/com/rjconsultores/ventaboletos/entidad/Ruta.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Ruta.java b/src/com/rjconsultores/ventaboletos/entidad/Ruta.java index cce345fa4..2f9319290 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Ruta.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Ruta.java @@ -91,6 +91,8 @@ public class Ruta implements Serializable { private Integer cantAsientos; @Column(name = "INDVENTARIOCARD") private Boolean indVentaRioCard; + @Column(name = "NUMRIOCARD") + private String numRioCard; public Ruta() { } @@ -306,6 +308,14 @@ public class Ruta implements Serializable { public void setIndVentaRioCard(Boolean indVentaRioCard) { this.indVentaRioCard = indVentaRioCard; + } + + public String getNumRioCard() { + return numRioCard; + } + + public void setNumRioCard(String numRioCard) { + this.numRioCard = numRioCard; } @Override @@ -331,4 +341,4 @@ public class Ruta implements Serializable { public String toString() { return this.getDescruta() + " - " + this.getRutaId(); } -} +} \ No newline at end of file