| | |
| | | public interface ProductService extends IService<Product> { |
| | | void deleteProductInformation(List<Integer> SpecificationsId); |
| | | |
| | | IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Page<Objects> page); |
| | | |
| | | List<Map<String, Object>> pageFatherNameProductInformation(String fatherName); |
| | | /** |
| | | * 展示该型号下的检验项目要求 |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> pageProductInformation(Integer specificationsId); |
| | | |
| | | /** |
| | | * 填写标准值与内控值,鼠标移开保存 |
| | | * @param id |
| | | * @param required |
| | | * @param internal |
| | | * @return |
| | | */ |
| | | Integer write(Integer id, String required, String internal); |
| | | |
| | | } |