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; + } }