| | |
| | | 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> |
| | |
| | | */ |
| | | public interface ProductMapper extends BaseMapper<Product> { |
| | | |
| | | List<Product> selectProductByMaterialId(int materialId); |
| | | //根据物料id查询检验项目 |
| | | List<Map> selectProductByMaterialId(int materialId); |
| | | |
| | | //展示该型号下的检验项目要求 |
| | | List<Map<String, Object>> pageProductInformation(Integer specificationsId); |
| | | |
| | | void deleteList(String ids); |
| | | } |