diff --git a/src/com/rjconsultores/ventaboletos/entidad/EstacionSitef.java b/src/com/rjconsultores/ventaboletos/entidad/EstacionSitef.java index 72ee6231c..3bed859c9 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 = "NUMFILIAL") private Integer numfilial; @Column(name = "NUMPDV") - private Integer numpdv; + private String numpdv; @OneToOne @JoinColumn(name = "EMPRESA_ID") private Empresa empresa; @@ -88,11 +88,11 @@ public class EstacionSitef implements Serializable { this.numfilial = numfilial; } - public Integer getNumpdv() { + public String getNumpdv() { return numpdv; } - public void setNumpdv(Integer numpdv) { + public void setNumpdv(String numpdv) { this.numpdv = numpdv; }