igor.rodrigo 2015-08-21 17:49:35 +00:00
parent 9142ed451e
commit 11a8321a6b
1 changed files with 12 additions and 0 deletions

View File

@ -53,6 +53,9 @@ public class PtovtaEmpresa implements Serializable {
@Column(name = "INDBLOQUEADA")
private Boolean indBloqueada;
@Column(name = "NUMSITEF")
private String numeroSitef;
public PtovtaEmpresa() {
}
@ -156,4 +159,13 @@ public class PtovtaEmpresa implements Serializable {
public void setIndBloqueada(Boolean indBloqueada) {
this.indBloqueada = indBloqueada;
}
public String getNumeroSitef() {
return numeroSitef;
}
public void setNumeroSitef(String numeroSitef) {
this.numeroSitef = numeroSitef;
}
}