Commit 0d4caf8105585a12fdf6366eb82fb4f1b85b692a
1 parent
f0f3f6e1
线路查询 添加 remove !=1
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/repository/LineRepository.java
| ... | ... | @@ -48,7 +48,7 @@ public interface LineRepository extends BaseRepository<Line, Integer> { |
| 48 | 48 | @Query(value = " SELECT l FROM Line l where l.company like ?1 and l.brancheCompany like ?2 and l.lineCode like ?3") |
| 49 | 49 | public List<Line> findLineBygsBm(String gsBm, String fgsBm, String line); |
| 50 | 50 | |
| 51 | - @Query("SELECT L FROM Line L where L.destroy=0") | |
| 51 | + @Query("SELECT L FROM Line L where L.destroy=0 and remove !=1") | |
| 52 | 52 | List<Line> findAllService(); |
| 53 | 53 | |
| 54 | 54 | ... | ... |