feat(REQ-3300): 发生区域校验查询接口替换

This commit is contained in:
chenwenjian 2025-02-25 10:51:02 +08:00
parent 0f17c98d70
commit 865acf47ff

View File

@ -45,7 +45,7 @@ public class ApolloConstructionAreaGateway {
return Lists.newArrayList();
}
log.info("ApolloConstructionAreaGateway getConstructionAreaByIds,params:{}", JSON.toJSONString(areaIds));
Result<List<ConstructionAreaInfo>> result = apolloConstructionAreaApi.getAllConstructionAreaByIds(areaIds);
Result<List<ConstructionAreaInfo>> result = apolloConstructionAreaApi.getConstructionAreaByIds(areaIds);
log.info("ApolloConstructionAreaGateway getAllConstructionAreaByIds,result:{}", JSON.toJSONString(result));
return result.getData();
} catch (Exception e) {