thiago.penido 2016-02-17 20:01:22 +00:00
parent f4e6b0289d
commit 323cef60aa
1 changed files with 20 additions and 0 deletions

View File

@ -114,6 +114,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;
}
}