From 5b7acd4c036e7f4965e3d0aee605c8a7563b9de8 Mon Sep 17 00:00:00 2001 From: julio Date: Tue, 8 Oct 2019 13:41:34 +0000 Subject: [PATCH] bug#15545 dev: qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@98140 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/CategoriaDescuento.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; }