gongchunyi
8 小时以前 0b4c9f2a37a825a84725cb66ecf04060831ac5d0
src/main/java/com/ruoyi/production/service/ProductBomService.java
@@ -20,11 +20,14 @@
 */
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);
    String strengthById(Long bomId);
}