| | |
| | | */ |
| | | public interface ProductMapper extends BaseMapper<Product> { |
| | | |
| | | List<Product> selectProductByMaterialId(String materialId); |
| | | //根据物料id查询检验项目 |
| | | List<Map> selectProductByMaterialId(int materialId); |
| | | |
| | | IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Integer specificationsId, Page<Objects> page); |
| | | //展示该型号下的检验项目要求 |
| | | List<Map<String, Object>> pageProductInformation(Integer specificationsId); |
| | | |
| | | Map<String, Object> selectOneChildren(Object father); |
| | | |
| | | Map<String, Object> getProductInformation(Integer productId); |
| | | |
| | | //通过项目名查询项目的试验方法 |
| | | List<Map> selectInstrumentByProname(String name); |
| | | } |