zss
2023-08-22 affabbd21802dacbf943692912a83e63106670e4
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
package com.yuanchu.limslaboratory.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.limslaboratory.pojo.ProductModel;
 
import java.util.List;
import java.util.Map;
 
/**
 * 基础项目模版表(ProductModel)表数据库访问层
 *
 * @author zss
 * @since 2023-08-19 11:00:39
 */
public interface ProductModelMapper extends BaseMapper<ProductModel> {
 
    //查询标准模版列表
    List<Map<String, Object>> selectproductModel(String name, String father, String material);
 
    //批量删除
    void delAllproductModel(String ids);
 
    //添加标准-->选择项目分组
    List<String> selectfather();
 
    //查询项目模版根据样品名
    List<Map<String, Object>> seleMode(String name);
 
    //选择样品名称
    List<String> selectmater();
}