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