zss
2023-08-19 e6ffa9fcebef022be1e8e8162c65f52754f9081e
standard-server/src/main/java/com/yuanchu/limslaboratory/mapper/ProductMapper.java
@@ -20,14 +20,12 @@
 */
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);
}