From 323cef60aad8150bcfb02e9e4d1921e94f821793 Mon Sep 17 00:00:00 2001 From: "thiago.penido" Date: Wed, 17 Feb 2016 20:01:22 +0000 Subject: [PATCH] fixes bug 7125 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@53011 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/EmpresaImposto.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java index 5401fb1b7..57dd07b20 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java @@ -113,6 +113,11 @@ public class EmpresaImposto implements Serializable { @Column(name = "PORCTRIBUTO") private BigDecimal porctributo; + + @Column(name = "ICMSIM") + private BigDecimal icmsIntermunicipal; + @Column(name = "INDICEICMSIMECF") + private BigDecimal indiceICMSIntermunicipal; public EmpresaImposto() { } @@ -633,4 +638,19 @@ public class EmpresaImposto implements Serializable { this.indOutrasUFBloqueadas = indOutrasUFBloqueadas; } + public BigDecimal getIcmsIntermunicipal() { + return icmsIntermunicipal; + } + + public void setIcmsIntermunicipal(BigDecimal icmsIntermunicipal) { + this.icmsIntermunicipal = icmsIntermunicipal; + } + + public BigDecimal getIndiceICMSIntermunicipal() { + return indiceICMSIntermunicipal; + } + + public void setIndiceICMSIntermunicipal(BigDecimal indiceICMSIntermunicipal) { + this.indiceICMSIntermunicipal = indiceICMSIntermunicipal; + } } \ No newline at end of file