XiaoRuby
2023-09-07 088ceb9faf6f1d0d9f57bb9cd65f542337d40b7f
standard-server/src/main/java/com/yuanchu/mom/service/ProductService.java
@@ -35,4 +35,53 @@
     * @return
     */
    List<Map<String,Object>> selectAllPro(Integer specificationsId, Integer version,String message);
    /**
     * 右上角新增-->技术指标-->选择工序,工艺
     * @param specificationsId
     * @return
     */
    List<Map<String,Object>> chooseTech(Integer specificationsId);
    /**
     * 右上角新增-->技术指标-->选择项目父类
     * @param technologyId
     * @return
     */
    List<Map<String,Object>> chooseFather(Integer technologyId);
    /**
     * 右上角新增-->技术指标
     * @param technologyId
     * @param productDto
     */
    void addProduct(Integer technologyId, ProductDto productDto);
    /**
     * 填写标准值与内控值,鼠标移开保存
     * @param id
     * @param required
     * @param internal
     * @return
     */
    String write(Integer id, String required, String internal);
    /**
     * 删除
     * @param id
     */
    void delProById(Integer id);
    /**
     * 批量删除
     * @param ids
     */
    void delAllPro(String ids);
    /**
     * 查询标准BOM技术指标中该型号工艺下的检验项目
     * @param technologyId
     * @return
     */
    List<Product> selProByVerSpe(Integer technologyId);
}