fixes bug 6555
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@47048 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
9142ed451e
commit
11a8321a6b
|
@ -53,6 +53,9 @@ public class PtovtaEmpresa implements Serializable {
|
||||||
@Column(name = "INDBLOQUEADA")
|
@Column(name = "INDBLOQUEADA")
|
||||||
private Boolean indBloqueada;
|
private Boolean indBloqueada;
|
||||||
|
|
||||||
|
@Column(name = "NUMSITEF")
|
||||||
|
private String numeroSitef;
|
||||||
|
|
||||||
public PtovtaEmpresa() {
|
public PtovtaEmpresa() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -156,4 +159,13 @@ public class PtovtaEmpresa implements Serializable {
|
||||||
public void setIndBloqueada(Boolean indBloqueada) {
|
public void setIndBloqueada(Boolean indBloqueada) {
|
||||||
this.indBloqueada = indBloqueada;
|
this.indBloqueada = indBloqueada;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getNumeroSitef() {
|
||||||
|
return numeroSitef;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNumeroSitef(String numeroSitef) {
|
||||||
|
this.numeroSitef = numeroSitef;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue