package com.stylefeng.guns.modular.system.util.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; }