bug#19058

dev: valdir
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@101376 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago.clemente 2020-04-28 19:46:46 +00:00
parent bfc2615a49
commit f9904e8008
1 changed files with 10 additions and 0 deletions

View File

@ -249,6 +249,9 @@ public class PuntoVenta implements Serializable {
@Where(clause = "activo = 1")
private List<CobrancaAdcPuntoVenta> cobrancaAdicionalList;
@Column(name = "TIEMPOMAXBOLETOENVENTA")
private Integer tiempoMaxBoletoEnVenta;
public List<CobrancaAdcPuntoVenta> 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;
}
}