fixes bug#21091

fixes bug#21087
dev:valdir
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@104536 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2020-11-26 21:23:12 +00:00
parent 3077b1763d
commit e20ffaa318
1 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ public class EstacionSitef implements Serializable {
@Column(name = "ESTACIONSITEF_ID")
private Integer estacionsitefId;
@Column(name = "NUMEMPRESA")
private Integer numempresa;
private String numempresa;
@Column(name = "NUMFILIAL")
private Integer numfilial;
@Column(name = "NUMPDV")
@ -85,11 +85,11 @@ public class EstacionSitef implements Serializable {
this.estacionsitefId = estacionsitefId;
}
public Integer getNumempresa() {
public String getNumempresa() {
return numempresa;
}
public void setNumempresa(Integer numempresa) {
public void setNumempresa(String numempresa) {
this.numempresa = numempresa;
}