czt
2025-02-08 cdad99fd8386cc3a44f6e66a85f4d0d0ac6fff03
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.fzzy35.repository;
 
import com.fzzy.async.fzzy35.entity.Fz35PlanDetail;
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 chen
 * @date 2023-05-14 19:55
 */
public interface Fzzy35Sync1404Rep extends JpaRepository<Fz35PlanDetail, String> {
 
    /**
     *
     * @return
     */
    @Query("from Fz35PlanDetail where planId =:planId ")
    List<Fz35PlanDetail> findDate(@Param("planId") String planId);
}