Commit 7c2841d8767b1d6936c26c4d553c50955f495566

Authored by 王通
1 parent b7491541

1.**公司生成线路文件时改成**公交

src/main/java/com/bsth/service/impl/StationRouteServiceImpl.java
... ... @@ -704,7 +704,7 @@ public class StationRouteServiceImpl extends BaseServiceImpl<StationRoute, Integ
704 704 } catch (Exception e) {
705 705 }*/
706 706  
707   - String head = lineName + " " + fileVersions + " " + line.getStartStationFirstTime() + "-" + line.getStartStationEndTime() + " " + line.getEndStationFirstTime() + "-" + line.getEndStationEndTime() + " " + line.getTicketPrice() + " " + company.getBusinessName() + " " + (company.getPhoneNum()== null ? "-" : company.getPhoneNum());
  707 + String head = lineName + " " + fileVersions + " " + line.getStartStationFirstTime() + "-" + line.getStartStationEndTime() + " " + line.getEndStationFirstTime() + "-" + line.getEndStationEndTime() + " " + line.getTicketPrice() + " " + company.getBusinessName().replace("公司", "公交") + " " + (company.getPhoneNum()== null ? "-" : company.getPhoneNum());
708 708  
709 709 textStr = head +"\r\n" + textStr;
710 710  
... ...