XiaoRuby
2023-08-22 62e0e2910b2858a60e5fa4ffda2590c05b0caf9d
standard-server/src/main/java/com/yuanchu/limslaboratory/service/ProductService.java
@@ -21,14 +21,22 @@
public interface ProductService extends IService<Product> {
    void deleteProductInformation(List<Integer> SpecificationsId);
    IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Integer specificationsId, Page<Objects> page);
    List<Map<String, Object>> pageFatherNameProductInformation(String fatherName);
    /**
     * 通过项目名查询项目的试验方法
     * @param name
     * 展示该型号下的检验项目要求
     * @param specificationsId
     * @return
     */
    List<Map> selectInstrumentByProname(String name);
    List<Map<String,Object>> pageProductInformation(Integer specificationsId);
    /**
     * 填写标准值与内控值,鼠标移开保存
     * @param id
     * @param required
     * @param internal
     * @return
     */
    Integer write(Integer id, String required, String internal);
    void deleteList(String ids);
}