package com.fzzy.async.fzzy35.repository; import com.fzzy.async.fzzy35.entity.Fz35DrugLogPeople; 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 */ public interface Fzzy35SyncDrugLogPeopleRep extends JpaRepository { @Query("from Fz35DrugLogPeople where id =:id") List listDrugLogPeople(@Param("id") String id); }