0014294: Comporte - (GLPI - 13138) 47253 – Venda estudante no Totem

bug#14294
dev:daniel
qua:junia

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@93622 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdir 2019-05-22 17:31:34 +00:00
parent 9d08755487
commit f1d08f8a13
1 changed files with 11 additions and 2 deletions

View File

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