Commit 23c8a90ab93f1a27e956577911b26f09376f8dab

Authored by youxiw2000
1 parent d4bc0d48

1

src/main/java/com/bsth/service/impl/StationRouteServiceImpl.java
... ... @@ -1167,11 +1167,11 @@ public class StationRouteServiceImpl extends BaseServiceImpl<StationRoute, Integ
1167 1167 String staitondistance = "\t" + tempDistc;
1168 1168  
1169 1169 // 站点名称
1170   - String stationName = objects.get(i)[7].equals("") ? "" : objects.get(i)[7].toString();
  1170 + String stationName = objects.get(i)[7].equals("") ? " " : objects.get(i)[7].toString();
1171 1171  
1172 1172 String stationNameEn = " ";
1173 1173 if(objects.get(i)[9] != null){
1174   - stationNameEn = objects.get(i)[9].equals("") ? "" : objects.get(i)[9].toString();
  1174 + stationNameEn = objects.get(i)[9].equals("") ? " " : objects.get(i)[9].toString();
1175 1175 }
1176 1176  
1177 1177  
... ...