czt
2025-09-25 029de836702607a95ccb0a69a74efcea52ddc451
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.fzzy.async.fzzy61.repository;
 
import com.fzzy.async.fzzy61.entity.Fz61DrugLogPeople;
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:YAN
 */
public interface Fzzy61SyncDrugLogPeopleRep extends JpaRepository<Fz61DrugLogPeople, String> {
 
    @Query("from Fz61DrugLogPeople where drugLogId =:id")
    List<Fz61DrugLogPeople> listDrugLogPeople(@Param("id") String id);
}