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-87c2c4800839master
parent
41672f480e
commit
47b5586ece
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue