cjl
2023-10-27 b62adf1d73b62711180a5332d7c2c71d2c0a1cfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.moral.api.entity;
 
/**
 * @program: screen
 * @description: 经纬度坐标类
 * @author: lizijie
 * @create: 2021-12-09 16:40
 **/
public class GeoCoordinate {
 
    private double latitude;
    private double longitude;
 
    public GeoCoordinate() {
    }
 
    public GeoCoordinate(double latitude, double longitude) {
        this.latitude = latitude;
        this.longitude = longitude;
    }
 
    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;
    }
}