standard-server/src/main/java/com/yuanchu/limslaboratory/service/impl/ProductServiceImpl.java
@@ -99,5 +99,11 @@ LambdaUpdateWrapper<Product> updateWrapper = new LambdaUpdateWrapper<>(); updateWrapper.eq(Product::getId, product.getId()); return productMapper.update(product, updateWrapper); } //通过项目名查询项目的试验方法 @Override public List<Map> selectInstrumentByProname(String name) { return productMapper.selectInstrumentByProname(name); } }