| package com.fzzy.async.fzzy61.repository; | 
|   | 
| import com.fzzy.async.fzzy40.entity.Fz40InoutPlanDetail; | 
| import com.fzzy.async.fzzy61.entity.Fz61InoutPlanDetail; | 
| import org.springframework.data.jpa.repository.JpaRepository; | 
| import org.springframework.data.jpa.repository.Query; | 
| import org.springframework.data.repository.query.Param; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * 查询轮换计划详细 | 
|  * | 
|  * @author czt | 
|  * @date 2023-10-30 09:55 | 
|  */ | 
| public interface Fzzy61Sync1404Rep extends JpaRepository<Fz61InoutPlanDetail, String> { | 
|   | 
|     /** | 
|      * | 
|      * @return | 
|      */ | 
|     @Query("from Fz61InoutPlanDetail where planId =:planId ") | 
|     List<Fz61InoutPlanDetail> findDate(@Param("planId") String planId); | 
| } |