fixes bug#14484

dev:lucas

qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@94727 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2019-06-17 19:31:32 +00:00
parent 41672f480e
commit 47b5586ece
1 changed files with 3 additions and 3 deletions

View File

@ -193,7 +193,7 @@ public class PuntoVenta implements Serializable {
private List<PtovtaCatInd> ptovtaCatIndList; private List<PtovtaCatInd> ptovtaCatIndList;
@Column(name = "CODPOSTAL") @Column(name = "CODPOSTAL")
private Long codpostal; private String codpostal;
@Column(name = "INDBLOQCANCIMPPOSTERIOR ") @Column(name = "INDBLOQCANCIMPPOSTERIOR ")
private Boolean indBloqueiaCancelamentoImpressaoPosterior; private Boolean indBloqueiaCancelamentoImpressaoPosterior;
@ -867,11 +867,11 @@ public class PuntoVenta implements Serializable {
this.indIntegracion = indIntegracion; this.indIntegracion = indIntegracion;
} }
public Long getCodpostal() { public String getCodpostal() {
return codpostal; return codpostal;
} }
public void setCodpostal(Long codpostal) { public void setCodpostal(String codpostal) {
this.codpostal = codpostal; this.codpostal = codpostal;
} }