| 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.supersavedriving.driver.modular.system.util.mongodb.model; |  |   |  | import lombok.Data; |  |   |  | @Data |  | public class LocationQuery { |  |     /** |  |      * 当前经纬度[xxx,xxx] |  |      **/ |  |     private Double[] coordinates; |  |     /** |  |      * 距离,如:200,500,1,3,5,10,20 |  |      **/ |  |     private Double distance; |  |     /** |  |      * 距离单位,如:m,km |  |      **/ |  |     private String unit; |  |     /** |  |      * 位置类型:1-景点,2-加油站,3-酒店 |  |      **/ |  |     private Integer type; |  | } | 
 |