package com.fzzy.async.fzzy40.repository; import com.fzzy.async.fzzy40.entity.Fz40CheckItem; 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; /** * 粮食入库质检 */ public interface Fzzy40Sync1203Rep extends JpaRepository { /** * 根据入库检验编码获取检验信息 * * @param checkId * @return */ @Query("from Fz40CheckItem where checkId=:checkId and companyId=:companyId order by standardId") List listInoutCheckItem(@Param("checkId") String checkId, @Param("companyId") String companyId); }