czt
2024-11-27 416380997a1e0c473c85826c361ebe38d21169fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.fzzy.async.fzzy40.repository;
 
import com.fzzy.async.fzzy40.entity.*;
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:YAN
 */
public interface Fzzy40SyncDrugLogPeopleRep extends JpaRepository<Fz40DrugLogPeople, String> {
 
    @Query("from Fz40DrugLogPeople where drugLogId =:id")
    List<Fz40DrugLogPeople> listDrugLogPeople(@Param("id") String id);
}