bug#15545

dev: 
qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@98140 d1611594-4594-4d17-8e1d-87c2c4800839
master
julio 2019-10-08 13:41:34 +00:00
parent 01f87ded8f
commit 5b7acd4c03
1 changed files with 10 additions and 0 deletions

View File

@ -76,6 +76,8 @@ public class CategoriaDescuento implements Serializable {
private Boolean indCuota; private Boolean indCuota;
@Column(name = "INDCUOTATRAMO") @Column(name = "INDCUOTATRAMO")
private Boolean indCuotaTramo; private Boolean indCuotaTramo;
@Column(name = "INDCUOTANUNCALIBERAR")
private Boolean indCuotaNuncaLiberar;
@Column(name = "TIEMPOCUOTA") @Column(name = "TIEMPOCUOTA")
@Temporal(TemporalType.TIMESTAMP) @Temporal(TemporalType.TIMESTAMP)
private Date tiempoCuota; private Date tiempoCuota;
@ -381,6 +383,14 @@ public class CategoriaDescuento implements Serializable {
this.indCuotaTramo = indCuotaTramo; this.indCuotaTramo = indCuotaTramo;
} }
public Boolean getIndCuotaNuncaLiberar() {
return indCuotaNuncaLiberar;
}
public void setIndCuotaNuncaLiberar(Boolean indCuotaNuncaLiberar) {
this.indCuotaNuncaLiberar = indCuotaNuncaLiberar;
}
public Date getTiempoCuota() { public Date getTiempoCuota() {
return tiempoCuota; return tiempoCuota;
} }