standard-server/src/main/java/com/yuanchu/limslaboratory/service/impl/ProductServiceImpl.java
@@ -57,6 +57,17 @@ @Transactional(rollbackFor = Exception.class) public List<Map<String, Object>> pageProductInformation(Integer specificationsId) { return productMapper.pageProductInformation(specificationsId); } //填写标准值与内控值,鼠标移开保存 @Override public Integer write(Integer id, String required, String internal) { Product product = new Product(); product.setId(id); product.setRequired(required); product.setInternal(internal); productMapper.updateById(product); return 1; }