fixes #AL-2782
parent
cf91f88791
commit
79e6d721a7
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.9.1</version>
|
||||
<version>1.10.0</version>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>rj-releases</id>
|
||||
|
|
|
@ -123,6 +123,9 @@ public class Pricing implements Serializable {
|
|||
@Column(name = "INDSAFER")
|
||||
private Boolean indSafer;
|
||||
|
||||
@Column(name = "INDEXIBEPOPUPPRICINGPOL")
|
||||
private Boolean indExibePopupPricingPol;
|
||||
|
||||
@OneToMany(mappedBy = "pricing", cascade = CascadeType.ALL)
|
||||
private List<PricingConexao> pricingConexaoList;
|
||||
|
||||
|
@ -593,4 +596,14 @@ public class Pricing implements Serializable {
|
|||
public void setPricingConexaoList(List<PricingConexao> pricingConexaoList) {
|
||||
this.pricingConexaoList = pricingConexaoList;
|
||||
}
|
||||
|
||||
public Boolean getIndExibePopupPricingPol() {
|
||||
return indExibePopupPricingPol!=null ? indExibePopupPricingPol : Boolean.FALSE;
|
||||
}
|
||||
|
||||
public void setIndExibePopupPricingPol(Boolean indExibePopupPricingPol) {
|
||||
this.indExibePopupPricingPol = indExibePopupPricingPol;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue