zss
2023-08-26 f1d445b9d51abb020cbcd4a61b4edd36fbe75216
standard-server/src/main/java/com/yuanchu/limslaboratory/mapper/ProductMapper.java
@@ -23,12 +23,20 @@
    //根据物料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,Integer version);
    Map<String, Object> selectOneChildren(Object father);
    void deleteList(String ids);
    Map<String, Object> getProductInformation(Integer productId);
    //展示该型号下的检验项目要求-->选择版本
    List<Integer> chooseVersion(Integer specificationsId);
    //通过项目名查询项目的试验方法
    List<Map> selectInstrumentByProname(String name);
    //查询该型号下的所有试验项目(父类)
    List<Map<String,Object>> chooseProject(Integer modelId);
    //根据项目父类,型号id,版本查询二级详情
    List<Map<String, Object>> selFath(Integer specificationId, String exper, Integer version);
    //根据项目父类为空,项目名,型号id,版本查询
    Map<String, Object> selNam(Integer specificationId, String exper, Integer version);
}