From a10ad9f551382673bc6af5a1d6d92edd9fee3680 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期五, 13 三月 2026 12:01:04 +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