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);
|
}
|