Commit abae18f293bbaca6e36d3bef9ad1069bc361c793

Authored by mcy123
1 parent 23f73f00

mcy

src/main/java/com/bsth/controller/forms/ExportController.java
@@ -381,6 +381,7 @@ public class ExportController { @@ -381,6 +381,7 @@ public class ExportController {
381 return resList; 381 return resList;
382 } 382 }
383 383
  384 +
384 ////营运线路名称统计表 385 ////营运线路名称统计表
385 @RequestMapping(value = "/alllineExport", method = RequestMethod.POST) 386 @RequestMapping(value = "/alllineExport", method = RequestMethod.POST)
386 public List<Map<String, Object>> alllineExport(@RequestParam Map<String, Object> map) { 387 public List<Map<String, Object>> alllineExport(@RequestParam Map<String, Object> map) {
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
@@ -82,7 +82,7 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI @@ -82,7 +82,7 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
82 @Query(value="select s from ScheduleRealInfo s where s.jName = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and bcType='normal' order by bcs") 82 @Query(value="select s from ScheduleRealInfo s where s.jName = ?1 and s.clZbh = ?2 and s.lpName = ?3 and s.scheduleDate = str_to_date(?4,'%Y-%m-%d') and bcType='normal' order by bcs")
83 List<ScheduleRealInfo> queryListWaybill2(String jName,String clZbh,String lpName,String date); 83 List<ScheduleRealInfo> queryListWaybill2(String jName,String clZbh,String lpName,String date);
84 84
85 - @Query(value="select s from ScheduleRealInfo s where s.jGh = ?1 and s.clZbh = ?2 and s.scheduleDate = str_to_date(?3,'%Y-%m-%d') and bcType='normal' order by bcs") 85 + @Query(value="select s from ScheduleRealInfo s where s.jGh = ?1 and s.clZbh = ?2 and s.scheduleDate = str_to_date(?3,'%Y-%m-%d') order by bcs")
86 List<ScheduleRealInfo> queryListWaybill3(String jName,String clZbh,String date); 86 List<ScheduleRealInfo> queryListWaybill3(String jName,String clZbh,String date);
87 87
88 @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2") 88 @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2")