From c76f9fc22473c4a7f3be3e9e9200319d17993160 Mon Sep 17 00:00:00 2001 From: valdevir Date: Thu, 13 May 2021 13:51:12 +0000 Subject: [PATCH] fixes bug#22115 qua: dev:Valdir git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@106664 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Empresa.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index 014c0af41..dff067148 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -5,6 +5,7 @@ package com.rjconsultores.ventaboletos.entidad; import java.io.Serializable; +import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.List; @@ -377,6 +378,10 @@ public class Empresa implements Serializable, Auditavel { @Column(name = "INDPRICINGVENDAABERTO") private Boolean indPricingVendaAberto; + @Column(name = "INDICEIRK") + private BigDecimal indiceIRK; + + @Transient @NaoAuditar private Empresa empresaClone; @@ -1403,6 +1408,12 @@ public class Empresa implements Serializable, Auditavel { this.indPricingVendaAberto = indPricingVendaAberto; } - + public BigDecimal getIndiceIRK() { + return indiceIRK; + } + + public void setIndiceIRK(BigDecimal indiceIRK) { + this.indiceIRK = indiceIRK; + } }