From 6bd1531a16c13868e812adbc1078efffe139a9dd Mon Sep 17 00:00:00 2001 From: "igor.rodrigo" Date: Thu, 13 Oct 2016 20:10:15 +0000 Subject: [PATCH] fixes bug #8099 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@61573 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/ConvenioDet.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/ConvenioDet.java b/src/com/rjconsultores/ventaboletos/entidad/ConvenioDet.java index ca90859e1..994b81b87 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/ConvenioDet.java +++ b/src/com/rjconsultores/ventaboletos/entidad/ConvenioDet.java @@ -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() {