update 高德

This commit is contained in:
2023-06-26 14:23:21 +08:00
parent e7aec156e8
commit e10e54ffb2
12 changed files with 109 additions and 25 deletions

View File

@@ -41,8 +41,8 @@ public class AMapController extends BaseController {
// true 验签成功
String bizContent = requestMap.get("biz_content");
GetStationInfoDTO dto = JSON.parseObject(bizContent, GetStationInfoDTO.class);
List<AMapStationInfo> stationInfos = aMapService.getStationInfos(dto);
List<AMapStationInfo> stationInfosV2 = aMapService.getStationInfosV2(dto);
// List<AMapStationInfo> stationInfos = aMapService.getStationInfos(dto);
List<AMapStationInfo> stationInfos = aMapService.getStationInfosV2(dto);
logger.info("高德拉取充电站静态数据 success");
return result.successResponse(stationInfos);
}

View File

@@ -40,7 +40,6 @@ import com.jsowell.pile.service.*;
import com.jsowell.pile.vo.web.BillingTemplateVO;
import com.jsowell.pile.vo.web.OrderListVO;
import com.jsowell.pile.vo.web.PileDetailVO;
import com.jsowell.pile.vo.web.PileInfoVO;
import com.jsowell.service.MemberService;
import com.jsowell.service.OrderService;
import com.jsowell.service.PileRemoteService;