diff --git a/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java b/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java index 17ca6162c..0df4afae9 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java +++ b/src/com/rjconsultores/ventaboletos/entidad/CategoriaDescuento.java @@ -76,6 +76,8 @@ public class CategoriaDescuento implements Serializable { private Boolean indCuota; @Column(name = "INDCUOTATRAMO") private Boolean indCuotaTramo; + @Column(name = "INDCUOTANUNCALIBERAR") + private Boolean indCuotaNuncaLiberar; @Column(name = "TIEMPOCUOTA") @Temporal(TemporalType.TIMESTAMP) private Date tiempoCuota; @@ -381,6 +383,14 @@ public class CategoriaDescuento implements Serializable { this.indCuotaTramo = indCuotaTramo; } + public Boolean getIndCuotaNuncaLiberar() { + return indCuotaNuncaLiberar; + } + + public void setIndCuotaNuncaLiberar(Boolean indCuotaNuncaLiberar) { + this.indCuotaNuncaLiberar = indCuotaNuncaLiberar; + } + public Date getTiempoCuota() { return tiempoCuota; }