From ec7d3b867e7b7f5073dda1684a8720424b9da5ad Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期二, 24 三月 2026 15:38:00 +0800
Subject: [PATCH] feat: 生产报工的详情、修改、删除接口

---
 src/main/java/com/ruoyi/production/mapper/ProductMaterialMapper.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/ruoyi/production/mapper/ProductMaterialMapper.java b/src/main/java/com/ruoyi/production/mapper/ProductMaterialMapper.java
index 1c5a682..52cefbb 100644
--- a/src/main/java/com/ruoyi/production/mapper/ProductMaterialMapper.java
+++ b/src/main/java/com/ruoyi/production/mapper/ProductMaterialMapper.java
@@ -1,6 +1,7 @@
 package com.ruoyi.production.mapper;
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.ruoyi.production.dto.ProductMaterialSkuDto;
 import com.ruoyi.production.pojo.ProductMaterial;
 
 /**
@@ -14,6 +15,7 @@
  */
 public interface ProductMaterialMapper extends BaseMapper<ProductMaterial> {
 
-    String selectProductModelIdByName(Long productModelId);
+    ProductMaterialSkuDto selectProductByModelId(Long productModelId);
 
+    ProductMaterialSkuDto selectProductByProductMainId(Long productOrderId);
 }

--
Gitblit v1.9.3