From 27550ee46778905ab194844ab5247b116f70659e Mon Sep 17 00:00:00 2001
From: wu <731351411@qq.com>
Date: 星期四, 23 十月 2025 17:42:16 +0800
Subject: [PATCH] 切割排产重写,增加详情查询接口,增加查询类,部分中文翻译

---
 hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/mapper/HollowGlassRelationInfoMapper.java |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/mapper/HollowGlassRelationInfoMapper.java b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/mapper/HollowGlassRelationInfoMapper.java
index c8a12c0..d35c61d 100644
--- a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/mapper/HollowGlassRelationInfoMapper.java
+++ b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/mapper/HollowGlassRelationInfoMapper.java
@@ -4,8 +4,8 @@
 import com.mes.glassinfo.entity.GlassInfo;
 import com.mes.hollow.entity.HollowGlassRelationInfo;
 import com.mes.hollow.entity.dto.LackDetailsDTO;
-import com.mes.order.entity.OrderDetailsDTO;
 import org.apache.ibatis.annotations.Param;
+import org.springframework.cache.annotation.Cacheable;
 
 import java.util.List;
 
@@ -18,12 +18,16 @@
 public interface HollowGlassRelationInfoMapper extends BaseMapper<HollowGlassRelationInfo> {
 
 
+    List<LackDetailsDTO> queryAllLackByFlowCard();
+    
     List<LackDetailsDTO> queryLackByFlowCard();
 
     int queryLayerByFlowCardId(@Param("flowCardId") String flowCardId);
 
     void clearDirtyFlowCardData(@Param("flowCardId") String flowCardId, @Param("layer") int layer);
 
-    List<GlassInfo> queryLackGlassByFlowCard(@Param("flowCardId") String flowCardId, @Param("orderSort") Integer orderSort, @Param("layer") Integer layer);
+    List<LackDetailsDTO> queryLackByFlowCard(@Param("flowCardId")  String flowCardId);
+
+    List<LackDetailsDTO> queryLackGlassByFlowCard(@Param("flowCardId") String flowCardId, @Param("orderSort") Integer orderSort, @Param("layer") Integer layer);
 }
 

--
Gitblit v1.8.0