XiaoRuby
2023-08-11 8936f5f9af4c6e0221b5a49f2c905efd4df58496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.yuanchu.mom.pojo.RawInsProduct;
 
import java.util.List;
import java.util.Map;
 
/**
 * 原材料申请单中的项目列表(RawInsProduct)表数据库访问层
 *
 * @author zss
 * @since 2023-08-01 13:52:30
 */
public interface RawInsProductMapper extends BaseMapper<RawInsProduct> {
 
    List<Map<String, Object>> selectInspectIdAndName();
 
    IPage<Map<String, Object>> selectPageDevice(Integer pageNo, Integer pageSize, String codeOrNameOrModel);
 
    Map<String, Object> inspectIdSelect(Integer inspectId);
 
    List<Map<String, Object>> parentClassification();
}