| package com.fzzy.async.fzzy61.repository; | 
|   | 
| import com.fzzy.async.fzzy61.entity.Fz61FileInfo; | 
| import org.springframework.data.jpa.repository.JpaRepository; | 
| import org.springframework.data.jpa.repository.Query; | 
| import org.springframework.data.repository.query.Param; | 
|   | 
| import java.util.Date; | 
| import java.util.List; | 
|   | 
| /** | 
|  * @Author:YAN | 
|  */ | 
| public interface Fzzy61Sync1109Rep extends JpaRepository<Fz61FileInfo, String> { | 
|     /** | 
|      * 根据信息文件信息 | 
|      * | 
|      * @param start | 
|      * @param end | 
|      * @return | 
|      */ | 
|     @Query("from Fz61FileInfo where createTime >=:start and createTime <:end order by createTime ") | 
|     List<Fz61FileInfo> listFileInfo(@Param("start") Date start, @Param("end") Date end); | 
|   | 
|     @Query("from Fz61FileInfo where bizId =:bizId order by createTime ") | 
|     List<Fz61FileInfo> listFileInfoByBizId(@Param("bizId") String bizId); | 
| } |