YYC
2024-12-30 5d2ddd92e970f02f42a4014cc65eb74e33feb776
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.fzzy.async.fzzy40.repository;
 
import com.fzzy.async.fzzy40.entity.Fz40InoutPlanDetail;
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 Fzzy40Sync1404Rep extends JpaRepository<Fz40InoutPlanDetail, String> {
 
    /**
     *
     * @return
     */
    @Query("from Fz40InoutPlanDetail where planId =:planId ")
    List<Fz40InoutPlanDetail> findDate(@Param("planId") String planId);
}