alexandre.lima 2017-07-14 19:09:12 +00:00
parent f18fd32e23
commit fd4cfe7ae2
1 changed files with 10 additions and 0 deletions

View File

@ -40,6 +40,8 @@ public class TarifaOficial implements Serializable {
private BigDecimal importeoutros;
@Column(name = "IMPORTESEGURO")
private BigDecimal importeseguro;
@Column(name = "IMPORTETPP")
private BigDecimal importetpp;
@Column(name = "STATUSTARIFA")
private String statustarifa;
@Column(name = "ACTIVO")
@ -98,6 +100,14 @@ public class TarifaOficial implements Serializable {
this.ruta = ruta;
}
public BigDecimal getImportetpp() {
return importetpp;
}
public void setImportetpp(BigDecimal importetpp) {
this.importetpp = importetpp;
}
public Integer getTarifaOficialId() {
return tarifaOficialId;
}