diff --git a/src/com/rjconsultores/ventaboletos/entidad/EstacionSitef.java b/src/com/rjconsultores/ventaboletos/entidad/EstacionSitef.java index f0b7c1514..9fa5ae0a1 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EstacionSitef.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EstacionSitef.java @@ -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; }