gleimar 2015-07-06 19:23:10 +00:00
parent b7f8881204
commit 847f4b9f1e
1 changed files with 9 additions and 0 deletions

View File

@ -42,6 +42,8 @@ public class FiscalFormapagoEmpresa {
@ManyToOne @ManyToOne
@JoinColumn(name = "FORMAPAGO_ID") @JoinColumn(name = "FORMAPAGO_ID")
private FormaPago formaPago; private FormaPago formaPago;
@Column(name = "INDVINCULADO")
private Boolean indVinculado;
public String getDescricao() { public String getDescricao() {
@ -92,6 +94,13 @@ public class FiscalFormapagoEmpresa {
public void setTipoformapago(String tipoformapago) { public void setTipoformapago(String tipoformapago) {
this.tipoformapago = tipoformapago; this.tipoformapago = tipoformapago;
} }
public Boolean getIndVinculado() {
return indVinculado;
}
public void setIndVinculado(Boolean indVinculado) {
this.indVinculado = indVinculado;
}
@Override @Override
public int hashCode() { public int hashCode() {
final int prime = 31; final int prime = 31;