From 2eaeb19b16af087d17c186c6220bf64f2fc07f4f Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期四, 07 五月 2026 14:51:57 +0800
Subject: [PATCH] 手动下单:检验中订单撤销报错问题修复

---
 inspect-server/src/main/java/com/ruoyi/inspect/mapper/InsProductMapper.java |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/inspect-server/src/main/java/com/ruoyi/inspect/mapper/InsProductMapper.java b/inspect-server/src/main/java/com/ruoyi/inspect/mapper/InsProductMapper.java
index 16af37f..9ad0dce 100644
--- a/inspect-server/src/main/java/com/ruoyi/inspect/mapper/InsProductMapper.java
+++ b/inspect-server/src/main/java/com/ruoyi/inspect/mapper/InsProductMapper.java
@@ -7,6 +7,9 @@
 import com.ruoyi.inspect.dto.ProductResultDto2;
 import com.ruoyi.inspect.dto.SampleProductRawAnalysisDto;
 import com.ruoyi.inspect.pojo.InsProduct;
+import com.ruoyi.inspect.pojo.InsProductDeviationWarningDetail;
+import com.ruoyi.inspect.vo.ProductVo;
+import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
@@ -18,6 +21,7 @@
 * @createDate 2024-03-08 09:45:03
 * @Entity com.yuanchu.mom.pojo.InsProduct
 */
+@Mapper
 public interface InsProductMapper extends BaseMapper<InsProduct> {
 
     int selectOrderManDay(@Param("orderId") Integer orderId);
@@ -75,7 +79,9 @@
      * @param supplierName
      * @return
      */
-    List<InsProductAnalysisDto> selectAnalysis(@Param("insProduct") InsProduct insProduct, @Param("supplierName") String supplierName);
+    List<InsProductDeviationWarningDetail> selectAnalysis(@Param("insProduct") InsProduct insProduct, @Param("supplierName") String supplierName);
+
+    List<ProductVo> selectInspectListByIfsIfs(@Param("ifsIds") List<Long> ifsIds);
 }
 
 

--
Gitblit v1.9.3