Fixes Bug #0009192
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@71390 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
035a664e10
commit
f18fd32e23
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue