YYC
2025-04-22 33ad92a73de17e8d72f30632ced04dca5719f76e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.fzzy.async.fzzy35.repository;
 
import com.fzzy.async.fzzy35.entity.Fz35CheckItem;
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 Fzzy35Sync1203Rep extends JpaRepository<Fz35CheckItem, String> {
 
    /**
     * 根据入库检验编码获取检验信息
     *
     * @param checkId
     * @return
     */
    @Query("from Fz35CheckItem where checkId=:checkId and companyId=:companyId order by standardId")
    List<Fz35CheckItem> listInoutCheckItem(@Param("checkId") String checkId, @Param("companyId") String companyId);
}