| package com.fzzy.async.fzzy40.repository; | 
|   | 
| import com.fzzy.async.fzzy40.entity.Fz40Api1507; | 
| import com.fzzy.async.fzzy40.entity.Fz40Profit; | 
| 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 czt | 
|  * @date 2024-01-12 09:55 | 
|  */ | 
| public interface Fzzy40Sync1507Rep extends JpaRepository<Fz40Api1507, String> { | 
|   | 
|     /** | 
|      * | 
|      * @param start | 
|      * @param end | 
|      * @return | 
|      */ | 
|     @Query("from Fz40Api1507 where zhgxsj >=:start and zhgxsj <:end order by zhgxsj ") | 
|     List<Fz40Api1507> findDateByTime(@Param("start") Date start, @Param("end") Date end); | 
| } |