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