package com.fzzy.async.fzzy61.repository;
|
|
import com.fzzy.async.fzzy61.entity.Fz61DrugLogDtl;
|
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 Fzzy61SyncDrugLogDtlRep extends JpaRepository<Fz61DrugLogDtl, String> {
|
|
|
@Query("from Fz61DrugLogDtl where drugLogId =:id")
|
List<Fz61DrugLogDtl> listDrugLogDtl(@Param("id") String id );
|
|
}
|