fixes bug#22115
qua: dev:Valdir git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@106664 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
443b33ddde
commit
c76f9fc224
|
@ -5,6 +5,7 @@
|
||||||
package com.rjconsultores.ventaboletos.entidad;
|
package com.rjconsultores.ventaboletos.entidad;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -377,6 +378,10 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
@Column(name = "INDPRICINGVENDAABERTO")
|
@Column(name = "INDPRICINGVENDAABERTO")
|
||||||
private Boolean indPricingVendaAberto;
|
private Boolean indPricingVendaAberto;
|
||||||
|
|
||||||
|
@Column(name = "INDICEIRK")
|
||||||
|
private BigDecimal indiceIRK;
|
||||||
|
|
||||||
|
|
||||||
@Transient
|
@Transient
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
private Empresa empresaClone;
|
private Empresa empresaClone;
|
||||||
|
@ -1403,6 +1408,12 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
this.indPricingVendaAberto = indPricingVendaAberto;
|
this.indPricingVendaAberto = indPricingVendaAberto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BigDecimal getIndiceIRK() {
|
||||||
|
return indiceIRK;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndiceIRK(BigDecimal indiceIRK) {
|
||||||
|
this.indiceIRK = indiceIRK;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue