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
commit
f9ee2f8fb0
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue