parent
b5a0c729f5
commit
22e0e03dc6
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>
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
package com.rjconsultores.ventaboletos.entidad;
|
||||
|
@ -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,7 +103,15 @@ public class ParamRecoleccion implements Serializable, Auditavel<ParamRecolecc
|
|||
this.importeadicional = importeadicional;
|
||||
}
|
||||
|
||||
public Boolean getActivo() {
|
||||
public BigDecimal getImporteBase() {
|
||||
return importeBase;
|
||||
}
|
||||
|
||||
public void setImporteBase(BigDecimal importeBase) {
|
||||
this.importeBase = importeBase;
|
||||
}
|
||||
|
||||
public Boolean getActivo() {
|
||||
return activo;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue