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;
@Column(name = "PORCDESCUENTOSEGURO")
private BigDecimal porcDescuentoSeguro;
@Column(name = "PORCOUTROS")
private BigDecimal porcOutros;
@Column(name = "ACTIVO")
private Boolean activo;
@ -151,6 +153,14 @@ public class ConvenioDet implements Serializable {
public void setQuantidade(Long quantidade) {
this.quantidade = quantidade;
}
public BigDecimal getPorcOutros() {
return porcOutros;
}
public void setPorcOutros(BigDecimal porcOutros) {
this.porcOutros = porcOutros;
}
@Override
public int hashCode() {