Authored by mali

地址的调整

@@ -62,8 +62,12 @@ public class AreaService { @@ -62,8 +62,12 @@ public class AreaService {
62 return getAddressInfoByErp(codeList.get(3), codeList); 62 return getAddressInfoByErp(codeList.get(3), codeList);
63 } 63 }
64 64
  65 + LOGGER.info("method selectByCodeList in codeList is {}", codeList);
  66 +
65 List<Area> areaList = areaMapper.selectByCodeList(codeList); 67 List<Area> areaList = areaMapper.selectByCodeList(codeList);
66 Map<Integer, String> areaMap = areaList.stream().collect(Collectors.toMap(Area::getId, Area::getCaption)); 68 Map<Integer, String> areaMap = areaList.stream().collect(Collectors.toMap(Area::getId, Area::getCaption));
  69 +
  70 + LOGGER.info("method selectByCodeList out areaList is {}", areaList);
67 return areaMap; 71 return areaMap;
68 } 72 }
69 73