fixes #AL-2782

master
valdevir 2023-08-18 20:18:22 -03:00
parent cf91f88791
commit 79e6d721a7
2 changed files with 14 additions and 1 deletions

View File

@ -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>

View File

@ -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;
}
}