package com.yuanchu.mom.mapper;
|
|
|
import com.yuanchu.mom.mybatis_config.MyBaseMapper;
|
import com.yuanchu.mom.pojo.RawInsProduct;
|
import java.util.List;
|
|
|
/**
|
* 原材料申请单中的项目列表(RawInsProduct)表数据库访问层
|
*
|
* @author zss
|
* @since 2023-08-01 13:52:30
|
*/
|
public interface RawInsProductMapper extends MyBaseMapper<RawInsProduct> {
|
|
//根据原材料检验单id查询检验项目
|
List<Integer> getresult(Integer id);
|
|
}
|