diff --git a/src/com/rjconsultores/ventaboletos/entidad/Tarifa.java b/src/com/rjconsultores/ventaboletos/entidad/Tarifa.java index 396ac5b56..de5fe844d 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Tarifa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Tarifa.java @@ -49,6 +49,8 @@ public class Tarifa implements Serializable { private BigDecimal importeoutros; @Column(name = "IMPORTESEGURO") private BigDecimal importeseguro; + @Column(name = "IMPORTETPP") + private BigDecimal importeTPP; @Column(name = "PRECIOORIGINAL") private BigDecimal preciooriginal; @Column(name = "STATUSTARIFA") @@ -103,6 +105,14 @@ public class Tarifa implements Serializable { return orgaoConcedente; } + public BigDecimal getImporteTPP() { + return importeTPP; + } + + public void setImporteTPP(BigDecimal importeTPP) { + this.importeTPP = importeTPP; + } + public void setOrgaoConcedente(OrgaoConcedente orgaoConcedente) { this.orgaoConcedente = orgaoConcedente; }