| | |
| | | public interface ProductService extends IService<Product> { |
| | | void deleteProductInformation(List<Integer> SpecificationsId); |
| | | |
| | | IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Page<Objects> page); |
| | | IPage<Map<String, Object>> pageProductInformation(String productCodeOrName, Integer specificationsId, Page<Objects> page); |
| | | |
| | | List<Map<String, Object>> pageFatherNameProductInformation(String fatherName); |
| | | |
| | | /** |
| | | * 通过项目名查询项目的试验方法 |
| | | * @param name |
| | | * @return |
| | | */ |
| | | List<Map> selectInstrumentByProname(String name); |
| | | } |