src/main/java/com/fzzy/async/fzzy40/repository/Fzzy40Sync1310Rep.java
@@ -11,7 +11,7 @@ /** * 查询质检数据 * * @author chen * @author czt * @date 2023-05-14 19:55 */ public interface Fzzy40Sync1310Rep extends JpaRepository<Fz40Quality, String> { @@ -22,6 +22,6 @@ * @param end * @return */ @Query("from Fz40Quality where time >=:start and time <:end order by time ") @Query("from Fz40Quality where updateTime >=:start and updateTime <:end order by updateTime ") List<Fz40Quality> findDateByTime(@Param("start") Date start, @Param("end") Date end); }