diff --git a/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java b/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java index 0967b77b3..5f74dee66 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java +++ b/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java @@ -86,6 +86,8 @@ public class CategoriaDescuento implements Serializable { private Integer tiempoDesactivar; @Column(name = "INDVENTAABIERTO") private Boolean indVentaAbierto; + @Column(name = "INDVENTASOLAMENTERESERVA") + private Boolean indVentaSolamenteReserva; public enum DisponibilidadeFeriado { // Declaração dos enum @@ -358,4 +360,13 @@ public class CategoriaDescuento implements Serializable { public void setIndVentaAbierto(Boolean indVentaAbierto) { this.indVentaAbierto = indVentaAbierto; } + + public Boolean getIndVentaSolamenteReserva() { + return indVentaSolamenteReserva; + } + + public void setIndVentaSolamenteReserva(Boolean indVentaSolamenteReserva) { + this.indVentaSolamenteReserva = indVentaSolamenteReserva; + } + }