gongchunyi
2026-03-24 ec7d3b867e7b7f5073dda1684a8720424b9da5ad
src/main/java/com/ruoyi/production/service/ProductBomService.java
@@ -20,11 +20,11 @@
 */
public interface ProductBomService extends IService<ProductBom> {
    IPage<ProductBomDto> listPage(Page page, ProductBomDto productBomDto);
    IPage<ProductBomDto> listPage(Page<ProductBom> page, ProductBomDto productBomDto);
    AjaxResult add(ProductBom productBom);
    AjaxResult uploadBom(MultipartFile file);
    AjaxResult uploadBom(MultipartFile file, Long dictCode);
    void exportBom(HttpServletResponse response, Integer bomId);
}