Commit 67e8b8905531b71a673addb367d01e9960d27d96
1 parent
602f4ce0
Update timetable qdz compare use like
Showing
1 changed file
with
1 additions
and
1 deletions
Too many changes to show.
To preserve performance only 1 of 3 files are displayed.
src/main/java/com/bsth/service/schedule/impl/TTInfoDetailServiceImpl.java
| ... | ... | @@ -192,7 +192,7 @@ public class TTInfoDetailServiceImpl extends BServiceImpl<TTInfoDetail, Long> im |
| 192 | 192 | (!"进场".equals(cell_con.trim()))) { |
| 193 | 193 | Map<String, Object> p1 = new HashMap<>(); |
| 194 | 194 | p1.put("line.id_eq", lineid); |
| 195 | - p1.put("stationName_eq", cell_con.trim()); | |
| 195 | + p1.put("stationName_like", cell_con.trim() + "%"); // 使用模糊匹配 | |
| 196 | 196 | p1.put("stationMark_eq", "B"); |
| 197 | 197 | p1.put("destroy_eq", 0); // 未撤销 |
| 198 | 198 | ... | ... |