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;