package com.fzzy.async.fzzy35.repository; import com.fzzy.async.fzzy35.entity.Fz35DrugLogWay; 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 Fzzy35SyncDrugLogWayRep extends JpaRepository { @Query("from Fz35DrugLogWay where id =:id") List listDrugLogWay(@Param("id") String id); }