Commit 06ec8c2d3604239b405ada29c93de45d7e4fe347
1 parent
397a50b7
update...
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
| ... | ... | @@ -129,7 +129,7 @@ public interface ScheduleRealInfoRepository extends BaseRepository<ScheduleRealI |
| 129 | 129 | int countByLineCodeAndDate(String xlBm, String schDate); |
| 130 | 130 | |
| 131 | 131 | @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) |
| 132 | - @Query(value = "select DISTINCT s from ScheduleRealInfo s where s.xlBm=?1 and s.scheduleDateStr=?2") | |
| 132 | + @Query(value = "select DISTINCT s from ScheduleRealInfo s where s.xlBm=?1 and s.scheduleDateStr=?2 and ccService=false") | |
| 133 | 133 | List<ScheduleRealInfo> findByLineCodeAndDate(String xlBm, String schDate); |
| 134 | 134 | |
| 135 | 135 | @Modifying | ... | ... |