inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardTreeServiceImpl.java
@@ -118,6 +118,14 @@ standardProductListMapper.update(productList, Wrappers.<StandardProductList>lambdaUpdate().in(StandardProductList::getId, ids)); return 1; } @Override public List<StandardTree> getStandTreeBySampleType(String laboratory, String sampleType) { return standardTreeMapper.selectList(Wrappers.<StandardTree>lambdaQuery() .eq(StandardTree::getLaboratory, laboratory) .eq(StandardTree::getSampleType, sampleType) .select(StandardTree::getModel, StandardTree::getSample)); } }