|
@@ -120,6 +120,7 @@ public class AuthClubServiceImpl implements AuthClubService {
|
|
if (StringUtils.isEmpty(lngAndLat)) {
|
|
if (StringUtils.isEmpty(lngAndLat)) {
|
|
return ResponseJson.error("参数异常,请输入用户当前经纬度", null);
|
|
return ResponseJson.error("参数异常,请输入用户当前经纬度", null);
|
|
}
|
|
}
|
|
|
|
+ log.info("查询机构数据,经纬度:" + lngAndLat);
|
|
String[] split = lngAndLat.split(",");
|
|
String[] split = lngAndLat.split(",");
|
|
BigDecimal lng = new BigDecimal(split[0]);
|
|
BigDecimal lng = new BigDecimal(split[0]);
|
|
BigDecimal lat = new BigDecimal(split[1]);
|
|
BigDecimal lat = new BigDecimal(split[1]);
|