XiaoRuby
2023-08-23 aa1e06a5cf1026af055e731586dcaf48c3e92b57
standard-server/src/main/java/com/yuanchu/limslaboratory/mapper/ProductMapper.java
@@ -20,9 +20,11 @@
 */
public interface ProductMapper extends BaseMapper<Product> {
    List<Product> selectProductByMaterialId(String materialId);
    //根据物料id查询检验项目
    List<Map> selectProductByMaterialId(int materialId);
    IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Page<Objects> page);
    //展示该型号下的检验项目要求
    List<Map<String, Object>> pageProductInformation(Integer specificationsId);
    Map<String, Object> selectOneChildren(Object father);
    void deleteList(String ids);
}