zss
2023-09-15 22899f74279a47f4ec79e1325f8489d948ced005
standard-server/src/main/java/com/yuanchu/mom/service/ProductService.java
@@ -41,7 +41,7 @@
     * @param specificationsId
     * @return
     */
    List<Map<String,Object>> chooseTech(Integer specificationsId);
    List<Map<String,Object>> chooseTech(Integer specificationsId,Integer version);
    /**
     * 右上角新增-->技术指标-->选择项目父类
@@ -52,10 +52,9 @@
    /**
     * 右上角新增-->技术指标
     * @param technologyId
     * @param productDto
     */
    void addProduct(Integer technologyId, ProductDto productDto);
    String addProduct(ProductDto productDto);
    /**
     * 填写标准值与内控值,鼠标移开保存
@@ -64,14 +63,7 @@
     * @param internal
     * @return
     */
    Integer write(Integer id, String required, String internal);
    /**
     * 添加同一个型号技术指标的版本
     * @param specificationsId
     * @return
     */
    Integer addVersion(Integer specificationsId,Integer version);
    String write(Integer id, String required, String internal);
    /**
     * 删除
@@ -86,10 +78,9 @@
    void delAllPro(String ids);
    /**
     * 查询标准BOM技术指标中该型号工艺下最新版本的检验项目
     * 查询标准BOM技术指标中该型号工艺下的检验项目
     * @param technologyId
     * @param ver
     * @return
     */
    List<Product> selProByVerSpe(Integer technologyId, Integer ver);
    List<Product> selProByVerSpe(Integer technologyId);
}