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