From deff787716b00b4f491de429ba092915d7fa1a9e Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期五, 27 三月 2026 13:07:05 +0800
Subject: [PATCH] 过程检数据查询+原有生产订单表增加产品规格id
---
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