From 7ffca29de342a6e5f7a124a9eabba468cfb4f9a3 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期一, 16 三月 2026 13:26:35 +0800
Subject: [PATCH] fix: 生产计划的产品ID、产品型号字段重命名
---
src/main/java/com/ruoyi/production/mapper/ProductStructureMapper.java | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/ruoyi/production/mapper/ProductStructureMapper.java b/src/main/java/com/ruoyi/production/mapper/ProductStructureMapper.java
index 812ab37..c2b75fc 100644
--- a/src/main/java/com/ruoyi/production/mapper/ProductStructureMapper.java
+++ b/src/main/java/com/ruoyi/production/mapper/ProductStructureMapper.java
@@ -12,5 +12,8 @@
@Mapper
public interface ProductStructureMapper extends BaseMapper<ProductStructure> {
- List<ProductStructure> listByProductId(@Param("productId") Long productId);
+
+ List<ProductStructureDto> listByBomId(@Param("bomId") Integer bomId);
+
+ List<ProductStructureDto> listByBomAndProcess(@Param("bomId") Integer bomId, @Param("processId") Long processId);
}
--
Gitblit v1.9.3