From 6aab19e6a4ce21aae822fe3920f82c04b4fe582c Mon Sep 17 00:00:00 2001 From: wilian Date: Wed, 4 May 2016 13:47:26 +0000 Subject: [PATCH] fixes bug #7339 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@55547 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Categoria.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Categoria.java b/src/com/rjconsultores/ventaboletos/entidad/Categoria.java index a72150a6f..b5303490f 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Categoria.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Categoria.java @@ -68,6 +68,9 @@ public class Categoria implements Serializable { @Column(name = "INDEMITETERMORECUSA") private Boolean indemitetermorecusa; + @Column(name = "CVECATEGORIA") + private String cvecategoria; + public Categoria() { } @@ -194,5 +197,13 @@ public class Categoria implements Serializable { public void setIndemitetermorecusa(Boolean indemitetermorecusa) { this.indemitetermorecusa = indemitetermorecusa; } + + public String getCvecategoria() { + return cvecategoria; + } + + public void setCvecategoria(String cvecategoria) { + this.cvecategoria = cvecategoria; + } }