From f1d08f8a13932d0531ba436818d2c3d2f583afc3 Mon Sep 17 00:00:00 2001 From: valdir Date: Wed, 22 May 2019 17:31:34 +0000 Subject: [PATCH] =?UTF-8?q?0014294:=20Comporte=20-=20(GLPI=20-=2013138)=20?= =?UTF-8?q?47253=20=E2=80=93=20Venda=20estudante=20no=20Totem=20bug#14294?= =?UTF-8?q?=20dev:daniel=20qua:junia?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@93622 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Empresa.java | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index a5be62ec0..2108af9a6 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -270,6 +270,9 @@ public class Empresa implements Serializable { @Column(name = "INDSUBSTITUICAOIGUALSEFAZ") private Boolean indSubstituicaoIgualSefaz; + @Column(name = "INDVENDAESTUDANTETOTEM") + private Boolean indVendaEstudanteTotem; + public Empresa() { super(); } @@ -1019,8 +1022,14 @@ public class Empresa implements Serializable { public void setIndSubstituicaoIgualSefaz(Boolean indSubstituicaoIgualSefaz) { this.indSubstituicaoIgualSefaz = indSubstituicaoIgualSefaz; } - - + + public Boolean getIndVendaEstudanteTotem() { + return indVendaEstudanteTotem == null ? false : indVendaEstudanteTotem; + } + + public void setIndVendaEstudanteTotem(Boolean indVendaEstudanteTotem) { + this.indVendaEstudanteTotem = indVendaEstudanteTotem; + } }