| | |
| | | */ |
| | | public interface ProductService extends IService<Product> { |
| | | |
| | | List<ProductDto> selectTreeProduct(String specifications, String project); |
| | | |
| | | /** |
| | | * 根据型号id查询项目(技术指标) |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> selectProductList(Integer specificationsId); |
| | | |
| | | /** |
| | | * 根据型号id查询版本 |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | List<Integer> selectVerByPro(Integer specificationsId); |
| | | |
| | | /** |
| | | *右侧数据展示-->技术指标(检验项目) |
| | | * @param specificationsId |
| | | * @param version |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> selectAllPro(Integer specificationsId, Integer version,String message); |
| | | } |