Merge pull request 'bug#AL-4505' (!202) from AL-4505 into master

Reviewed-on: adm/ModelWeb#202
Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>
master
aurora.cuaquentzi 2024-06-26 19:04:33 +00:00
commit f9ee2f8fb0
2 changed files with 13 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<version>1.66.0</version>
<version>1.67.0</version>
<distributionManagement>
<repository>

View File

@ -47,6 +47,8 @@ public class ParamRecoleccion implements Serializable, Auditavel<ParamRecolecc
private BigDecimal importeinicial;
@Column(name = "IMPORTEADICIONAL")
private BigDecimal importeadicional;
@Column(name = "IMPORTEBASE")
private BigDecimal importeBase;
@Column(name = "ACTIVO")
private Boolean activo;
@Column(name = "FECMODIF")
@ -101,6 +103,14 @@ public class ParamRecoleccion implements Serializable, Auditavel<ParamRecolecc
this.importeadicional = importeadicional;
}
public BigDecimal getImporteBase() {
return importeBase;
}
public void setImporteBase(BigDecimal importeBase) {
this.importeBase = importeBase;
}
public Boolean getActivo() {
return activo;
}