alexandre.lima 2017-07-14 19:08:56 +00:00
parent 035a664e10
commit f18fd32e23
1 changed files with 10 additions and 0 deletions

View File

@ -49,6 +49,8 @@ public class Tarifa implements Serializable {
private BigDecimal importeoutros; private BigDecimal importeoutros;
@Column(name = "IMPORTESEGURO") @Column(name = "IMPORTESEGURO")
private BigDecimal importeseguro; private BigDecimal importeseguro;
@Column(name = "IMPORTETPP")
private BigDecimal importeTPP;
@Column(name = "PRECIOORIGINAL") @Column(name = "PRECIOORIGINAL")
private BigDecimal preciooriginal; private BigDecimal preciooriginal;
@Column(name = "STATUSTARIFA") @Column(name = "STATUSTARIFA")
@ -103,6 +105,14 @@ public class Tarifa implements Serializable {
return orgaoConcedente; return orgaoConcedente;
} }
public BigDecimal getImporteTPP() {
return importeTPP;
}
public void setImporteTPP(BigDecimal importeTPP) {
this.importeTPP = importeTPP;
}
public void setOrgaoConcedente(OrgaoConcedente orgaoConcedente) { public void setOrgaoConcedente(OrgaoConcedente orgaoConcedente) {
this.orgaoConcedente = orgaoConcedente; this.orgaoConcedente = orgaoConcedente;
} }