igor.rodrigo 2016-10-13 20:10:15 +00:00
parent 3eb7247b42
commit 6bd1531a16
1 changed files with 10 additions and 0 deletions

View File

@ -42,6 +42,8 @@ public class ConvenioDet implements Serializable {
private BigDecimal porcDescuentoPedagio; private BigDecimal porcDescuentoPedagio;
@Column(name = "PORCDESCUENTOSEGURO") @Column(name = "PORCDESCUENTOSEGURO")
private BigDecimal porcDescuentoSeguro; private BigDecimal porcDescuentoSeguro;
@Column(name = "PORCOUTROS")
private BigDecimal porcOutros;
@Column(name = "ACTIVO") @Column(name = "ACTIVO")
private Boolean activo; private Boolean activo;
@ -152,6 +154,14 @@ public class ConvenioDet implements Serializable {
this.quantidade = quantidade; this.quantidade = quantidade;
} }
public BigDecimal getPorcOutros() {
return porcOutros;
}
public void setPorcOutros(BigDecimal porcOutros) {
this.porcOutros = porcOutros;
}
@Override @Override
public int hashCode() { public int hashCode() {
int hash = 0; int hash = 0;