From 847f4b9f1e874cdbb4f268401f88e397bbd0088f Mon Sep 17 00:00:00 2001 From: gleimar Date: Mon, 6 Jul 2015 19:23:10 +0000 Subject: [PATCH] fixes bug#6444 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@45739 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/FiscalFormapagoEmpresa.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/FiscalFormapagoEmpresa.java b/src/com/rjconsultores/ventaboletos/entidad/FiscalFormapagoEmpresa.java index e31279070..b525120ad 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/FiscalFormapagoEmpresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/FiscalFormapagoEmpresa.java @@ -42,6 +42,8 @@ public class FiscalFormapagoEmpresa { @ManyToOne @JoinColumn(name = "FORMAPAGO_ID") private FormaPago formaPago; + @Column(name = "INDVINCULADO") + private Boolean indVinculado; public String getDescricao() { @@ -92,6 +94,13 @@ public class FiscalFormapagoEmpresa { public void setTipoformapago(String tipoformapago) { this.tipoformapago = tipoformapago; } + + public Boolean getIndVinculado() { + return indVinculado; + } + public void setIndVinculado(Boolean indVinculado) { + this.indVinculado = indVinculado; + } @Override public int hashCode() { final int prime = 31;