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