diff --git a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java index 3dccf9bae..5b201539c 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java +++ b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java @@ -249,6 +249,9 @@ public class PuntoVenta implements Serializable { @Where(clause = "activo = 1") private List cobrancaAdicionalList; + @Column(name = "TIEMPOMAXBOLETOENVENTA") + private Integer tiempoMaxBoletoEnVenta; + public List getCobrancaAdicionalList() { return cobrancaAdicionalList; } @@ -1124,4 +1127,11 @@ public class PuntoVenta implements Serializable { this.indBloqueiaTipoPassagem = indBloqueiaTipoPassagem; } + public Integer getTiempoMaxBoletoEnVenta() { + return tiempoMaxBoletoEnVenta; + } + + public void setTiempoMaxBoletoEnVenta(Integer tiempoMaxBoletoEnVenta) { + this.tiempoMaxBoletoEnVenta = tiempoMaxBoletoEnVenta; + } }