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