fixes bug #8099
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@61573 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
3eb7247b42
commit
6bd1531a16
|
@ -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;
|
||||||
|
@ -151,6 +153,14 @@ public class ConvenioDet implements Serializable {
|
||||||
public void setQuantidade(Long quantidade) {
|
public void setQuantidade(Long quantidade) {
|
||||||
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() {
|
||||||
|
|
Loading…
Reference in New Issue