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> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId> <artifactId>ModelWeb</artifactId>
<version>1.66.0</version> <version>1.67.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -1,5 +1,5 @@
/* /*
* To change this template, choose Tools | Templates * To change this template, choose Tools | Templates
* and open the template in the editor. * and open the template in the editor.
*/ */
package com.rjconsultores.ventaboletos.entidad; package com.rjconsultores.ventaboletos.entidad;
@ -47,6 +47,8 @@ public class ParamRecoleccion implements Serializable, Auditavel<ParamRecolecc
private BigDecimal importeinicial; private BigDecimal importeinicial;
@Column(name = "IMPORTEADICIONAL") @Column(name = "IMPORTEADICIONAL")
private BigDecimal importeadicional; private BigDecimal importeadicional;
@Column(name = "IMPORTEBASE")
private BigDecimal importeBase;
@Column(name = "ACTIVO") @Column(name = "ACTIVO")
private Boolean activo; private Boolean activo;
@Column(name = "FECMODIF") @Column(name = "FECMODIF")
@ -101,7 +103,15 @@ public class ParamRecoleccion implements Serializable, Auditavel<ParamRecolecc
this.importeadicional = importeadicional; this.importeadicional = importeadicional;
} }
public Boolean getActivo() { public BigDecimal getImporteBase() {
return importeBase;
}
public void setImporteBase(BigDecimal importeBase) {
this.importeBase = importeBase;
}
public Boolean getActivo() {
return activo; return activo;
} }