From 97aa0bc9ac7bed33449da15025adf511b573833e Mon Sep 17 00:00:00 2001 From: wilian Date: Fri, 9 Apr 2021 20:33:39 +0000 Subject: [PATCH] fixes bug#21635 dev:valdir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@106173 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Pricing.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Pricing.java b/src/com/rjconsultores/ventaboletos/entidad/Pricing.java index b52ef3572..771755ef1 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Pricing.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Pricing.java @@ -116,6 +116,9 @@ public class Pricing implements Serializable { @Column(name = "INDSOMENTEASSENTOSUGERIDO") private Boolean indSomenteAssentoSugerido; + + @Column(name = "INDPRICINGDIVIDIRIDAEVOLTA") + private Boolean indPricingDividirIdaEVolta; public enum GerarFeriado { // Declaração dos enum @@ -549,4 +552,12 @@ public class Pricing implements Serializable { this.indSomenteAssentoSugerido = indSomenteAssentoSugerido; } + public Boolean getIndPricingDividirIdaEVolta() { + return BooleanUtils.toBoolean(indPricingDividirIdaEVolta); + } + + public void setIndPricingDividirIdaEVolta(Boolean indPricingDividirIdaEVolta) { + this.indPricingDividirIdaEVolta = indPricingDividirIdaEVolta; + } + }