‘liusuyi’
2023-08-22 7a880de423619dc266a60dc643794ba626f7131f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.utils.tools;
 
import lombok.AllArgsConstructor;
import lombok.Data;
 
/**
 * @Description:
 * @ClassName: Point
 * @Author: 刘苏义
 * @Date: 2023年08月22日9:56:58
 * @Version: 1.0
 **/
@Data
public class Point{
    private static final long serialVersionUID = 1L;
    private Double longitude;
    private Double latitude;
 
    public Point(Double x, Double y) {
        this.longitude = x;
        this.latitude = y;
    }
}