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-87c2c4800839master
parent
3077b1763d
commit
e20ffaa318
|
@ -40,7 +40,7 @@ public class EstacionSitef implements Serializable {
|
||||||
@Column(name = "ESTACIONSITEF_ID")
|
@Column(name = "ESTACIONSITEF_ID")
|
||||||
private Integer estacionsitefId;
|
private Integer estacionsitefId;
|
||||||
@Column(name = "NUMEMPRESA")
|
@Column(name = "NUMEMPRESA")
|
||||||
private Integer numempresa;
|
private String numempresa;
|
||||||
@Column(name = "NUMFILIAL")
|
@Column(name = "NUMFILIAL")
|
||||||
private Integer numfilial;
|
private Integer numfilial;
|
||||||
@Column(name = "NUMPDV")
|
@Column(name = "NUMPDV")
|
||||||
|
@ -85,11 +85,11 @@ public class EstacionSitef implements Serializable {
|
||||||
this.estacionsitefId = estacionsitefId;
|
this.estacionsitefId = estacionsitefId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getNumempresa() {
|
public String getNumempresa() {
|
||||||
return numempresa;
|
return numempresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNumempresa(Integer numempresa) {
|
public void setNumempresa(String numempresa) {
|
||||||
this.numempresa = numempresa;
|
this.numempresa = numempresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue