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 Fzzy40Sync1023Rep extends JpaRepository { //查询熏蒸备案主表 @Query("from Fz4DrugLogApply where deptId =:deptId") List listDrugLogApply(@Param("deptId") String deptId); }