From 8957203bdb94c0119e9e86e56f5f0c82b5ce3869 Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期一, 23 三月 2026 14:34:31 +0800
Subject: [PATCH] 产品需求汇总添加过滤条件

---
 src/main/java/com/ruoyi/production/service/ProductMaterialService.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/production/service/ProductMaterialService.java b/src/main/java/com/ruoyi/production/service/ProductMaterialService.java
index 34fd9a7..75a32cc 100644
--- a/src/main/java/com/ruoyi/production/service/ProductMaterialService.java
+++ b/src/main/java/com/ruoyi/production/service/ProductMaterialService.java
@@ -1,7 +1,10 @@
 package com.ruoyi.production.service;
 
 import com.baomidou.mybatisplus.extension.service.IService;
+import com.ruoyi.production.dto.ProductMaterialGroupDto;
 import com.ruoyi.production.pojo.ProductMaterial;
+
+import java.util.List;
 
 /**
  * <br>
@@ -17,4 +20,14 @@
     void loadProductMaterialData();
 
     void syncProductMaterialJob();
+
+    List<ProductMaterialGroupDto> ProductMaterialList(Integer type);
+
+    void addProductMaterial(ProductMaterial productMaterial);
+
+    void updateProductMaterial(ProductMaterial productMaterial);
+
+    void deleteProductMaterial(List<Long> ids);
+
+    List<ProductMaterialGroupDto> productMaterialListByQuery(String materialName, Integer materialTypeId);
 }

--
Gitblit v1.9.3