wilian 2014-12-11 17:40:19 +00:00
parent 7406cb7071
commit e5c3aad7f5
1 changed files with 11 additions and 0 deletions

View File

@ -108,6 +108,9 @@ public class EmpresaImposto implements Serializable {
@Column(name = "INDICEICMSECF")
private Integer indiceICMSecf;
@Column(name = "TRIBUTO")
private BigDecimal tributo;
public EmpresaImposto() {
}
@ -605,4 +608,12 @@ public class EmpresaImposto implements Serializable {
return "com.rjconsultores.ventaboletos.entidad.EmpresaImposto[empresaImpostoId=" + empresaImpostoId + "]";
}
public BigDecimal getTributo() {
return tributo;
}
public void setTributo(BigDecimal tributo) {
this.tributo = tributo;
}
}