fixes bug#AL-1536
dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@114825 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
e3d964a647
commit
2a6b84a459
|
@ -326,6 +326,12 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
|||
@Column(name = "INDBLOQCANCBILHETEIMPRESSO ")
|
||||
private Boolean indBloqueiaCancelamentoBilheteImpresso;
|
||||
|
||||
@Column(name = "LATITUDE ")
|
||||
private Double latitude;
|
||||
|
||||
@Column(name = "LONGITUDE ")
|
||||
private Double longitude;
|
||||
|
||||
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
||||
return cobrancaAdicionalList;
|
||||
}
|
||||
|
@ -1280,6 +1286,22 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
|||
this.ptovtaExcecaoMultaCancList = ptovtaExcecaoMultaCanc;
|
||||
}
|
||||
|
||||
public Double getLatitude() {
|
||||
return latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(Double latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public Double getLongitude() {
|
||||
return longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(Double longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void clonar() throws CloneNotSupportedException {
|
||||
|
||||
|
|
Loading…
Reference in New Issue