Commit 7c2841d8767b1d6936c26c4d553c50955f495566
1 parent
b7491541
1.**公司生成线路文件时改成**公交
Showing
1 changed file
with
1 additions
and
1 deletions
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 | ... | ... |