From 3870cf443bf0dfd9394bc545c8e90ac0d6dacaeb Mon Sep 17 00:00:00 2001
From: cuilei <ray_tsu1@163.com>
Date: 星期一, 08 九月 2025 17:55:05 +0800
Subject: [PATCH] 上料实体类调整、物料消耗明细基础代码、报工接口适配调整(适配上料表结构调整、并记录物料消耗明细)

---
 src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java b/src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java
index 500343c..1ff6772 100644
--- a/src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java
+++ b/src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java
@@ -2,6 +2,7 @@
 
 import com.baomidou.mybatisplus.extension.service.IService;
 import org.jeecg.modules.andon.dto.AndonButtonDTO;
+import org.jeecg.modules.andon.dto.AndonOrdeDto;
 import org.jeecg.modules.andon.entity.AndonButtonConfig;
 
 import java.util.List;
@@ -28,21 +29,20 @@
      * @param factoryId
      * @return
      */
-    List<AndonButtonDTO> queryUserAndonCallList(String factoryId);
+    List<AndonOrdeDto> queryUserAndonCallList(String factoryId, String orderStatus);
 
     /**
      * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅鍝嶅簲鍒楄〃
      * @param factoryId
      * @return
      */
-    List<AndonButtonDTO> queryUserAndonRespondList(String factoryId);
-
+    List<AndonOrdeDto> queryUserAndonRespondList(String factoryId,String orderStatus);
 
     /**
      * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅澶勭悊鍒楄〃
      * @param factoryId
      * @return
      */
-    List<AndonButtonDTO> queryUserAndonHandelList(String factoryId);
+    List<AndonOrdeDto> queryUserAndonHandelList(String factoryId,String orderStatus);
 
 }

--
Gitblit v1.9.3