fixes bug#8033
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@60823 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
47e0d7e142
commit
19a399a494
|
@ -40,7 +40,7 @@ public class EstacionSitef implements Serializable {
|
||||||
@Column(name = "NUMFILIAL")
|
@Column(name = "NUMFILIAL")
|
||||||
private Integer numfilial;
|
private Integer numfilial;
|
||||||
@Column(name = "NUMPDV")
|
@Column(name = "NUMPDV")
|
||||||
private Integer numpdv;
|
private String numpdv;
|
||||||
@OneToOne
|
@OneToOne
|
||||||
@JoinColumn(name = "EMPRESA_ID")
|
@JoinColumn(name = "EMPRESA_ID")
|
||||||
private Empresa empresa;
|
private Empresa empresa;
|
||||||
|
@ -88,11 +88,11 @@ public class EstacionSitef implements Serializable {
|
||||||
this.numfilial = numfilial;
|
this.numfilial = numfilial;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getNumpdv() {
|
public String getNumpdv() {
|
||||||
return numpdv;
|
return numpdv;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNumpdv(Integer numpdv) {
|
public void setNumpdv(String numpdv) {
|
||||||
this.numpdv = numpdv;
|
this.numpdv = numpdv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue