bug#AL-1830
parent
19239fb656
commit
60048667aa
|
@ -332,10 +332,10 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
private Boolean indBloqueiaCancelamentoBilheteImpresso;
|
private Boolean indBloqueiaCancelamentoBilheteImpresso;
|
||||||
|
|
||||||
@Column(name = "LATITUDE ")
|
@Column(name = "LATITUDE ")
|
||||||
private Double latitude;
|
private Float latitude;
|
||||||
|
|
||||||
@Column(name = "LONGITUDE ")
|
@Column(name = "LONGITUDE ")
|
||||||
private Double longitude;
|
private Float longitude;
|
||||||
|
|
||||||
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
||||||
return cobrancaAdicionalList;
|
return cobrancaAdicionalList;
|
||||||
|
@ -1300,19 +1300,19 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
this.ptovtaExcecaoMultaCancList = ptovtaExcecaoMultaCanc;
|
this.ptovtaExcecaoMultaCancList = ptovtaExcecaoMultaCanc;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Double getLatitude() {
|
public Float getLatitude() {
|
||||||
return latitude;
|
return latitude;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLatitude(Double latitude) {
|
public void setLatitude(Float latitude) {
|
||||||
this.latitude = latitude;
|
this.latitude = latitude;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Double getLongitude() {
|
public Float getLongitude() {
|
||||||
return longitude;
|
return longitude;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLongitude(Double longitude) {
|
public void setLongitude(Float longitude) {
|
||||||
this.longitude = longitude;
|
this.longitude = longitude;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue