diff --git a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java index 47d634fba..09dab4d7e 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java +++ b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java @@ -267,6 +267,9 @@ public class PuntoVenta implements Serializable { @Column(name = "TIPO_SOCIO") @Enumerated(EnumType.STRING) private TipoSocio tipoSocio; + + @Column(name = "INDQRCODETAXAEMBARQUERODTTL") + private Boolean indQrcodeTaxaEmbarqueRodTTL; public List getCobrancaAdicionalList() { return cobrancaAdicionalList; @@ -1188,5 +1191,13 @@ public class PuntoVenta implements Serializable { public void setTipoSocio(TipoSocio tipoSocio) { this.tipoSocio = tipoSocio; } - + + public Boolean getIndQrcodeTaxaEmbarqueRodTTL() { + return indQrcodeTaxaEmbarqueRodTTL; + } + + public void setIndQrcodeTaxaEmbarqueRodTTL(Boolean indQrcodeTaxaEmbarqueRodTTL) { + this.indQrcodeTaxaEmbarqueRodTTL = indQrcodeTaxaEmbarqueRodTTL; + } + } \ No newline at end of file