CZT
2023-12-21 637e5d4b9b37f165c639ed74cdaf7b98c514473b
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);
}