XiaoRuby
2023-07-27 c6c30ead51b2ac1f7ffd4fb7e4b193c5d11d7bdf
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
26
27
28
29
30
31
32
33
package com.yuanchu.limslaboratory.mapper;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yuanchu.limslaboratory.pojo.Product;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.util.List;
 
import java.util.Map;
import java.util.Objects;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-07-17
 */
public interface ProductMapper extends BaseMapper<Product> {
 
    List<Product> selectProductByMaterialId(String materialId);
 
    IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Integer specificationsId, Page<Objects> page);
 
    Map<String, Object> selectOneChildren(Object father);
 
    Map<String, Object> getProductInformation(Integer productId);
 
    //通过项目名查询项目的试验方法
    List<Map> selectInstrumentByProname(String name);
}