Commit dee343b53ae057e40240f08b5ed1f90597ab3934

Authored by youxiw2000
1 parent 1d272901

修复BUG 延用版本 查询英文 站点路由自动填充站点类型和上一站

src/main/java/com/bsth/service/impl/StationRouteServiceImpl.java
... ... @@ -683,7 +683,11 @@ public class StationRouteServiceImpl extends BaseServiceImpl<StationRoute, Integ
683 683 tempM.put("zdmc", objects.get(i)[40]);
684 684 // 行业编码
685 685 tempM.put("industryCode", objects.get(i)[41]);
686   - tempM.put("stationNameEn", objects.get(i)[42]);
  686 + try {
  687 + tempM.put("stationNameEn", objects.get(i)[42]);
  688 + } catch (Exception e) {
  689 + e.printStackTrace();
  690 + }
687 691  
688 692 resultList.add(tempM);
689 693 }
... ...