From 2cf76b152d6dd556bade813ea843899e7d4ba42e Mon Sep 17 00:00:00 2001
From: zhangherong <571457620@qq.com>
Date: 星期四, 21 八月 2025 09:05:10 +0800
Subject: [PATCH] art: 物料拉动增加发布时间

---
 src/main/java/org/jeecg/modules/andon/service/impl/AndonButtonConfigServiceImpl.java |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/jeecg/modules/andon/service/impl/AndonButtonConfigServiceImpl.java b/src/main/java/org/jeecg/modules/andon/service/impl/AndonButtonConfigServiceImpl.java
index 3dc9212..c1eea0f 100644
--- a/src/main/java/org/jeecg/modules/andon/service/impl/AndonButtonConfigServiceImpl.java
+++ b/src/main/java/org/jeecg/modules/andon/service/impl/AndonButtonConfigServiceImpl.java
@@ -1,7 +1,9 @@
 package org.jeecg.modules.andon.service.impl;
 
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import liquibase.pro.packaged.S;
 import org.jeecg.modules.andon.dto.AndonButtonDTO;
+import org.jeecg.modules.andon.dto.AndonOrdeDto;
 import org.jeecg.modules.andon.entity.AndonButtonConfig;
 import org.jeecg.modules.andon.mapper.AndonButtonConfigMapper;
 import org.jeecg.modules.andon.service.IAndonButtonConfigService;
@@ -30,18 +32,18 @@
     }
 
     @Override
-    public List<AndonButtonDTO> queryUserAndonCallList(String factoryId) {
-        return baseMapper.queryUserAndonCallList(factoryId);
+    public List<AndonOrdeDto> queryUserAndonCallList(String factoryId, String orderStatus) {
+        return baseMapper.queryUserAndonCallList(factoryId, orderStatus);
     }
 
     @Override
-    public List<AndonButtonDTO> queryUserAndonRespondList(String factoryId) {
-        return baseMapper.queryUserAndonRespondList(factoryId);
+    public List<AndonOrdeDto> queryUserAndonRespondList(String factoryId, String orderStatus) {
+        return baseMapper.queryUserAndonRespondList(factoryId, orderStatus);
     }
 
     @Override
-    public List<AndonButtonDTO> queryUserAndonHandelList(String factoryId) {
-        return baseMapper.queryUserAndonHandelList(factoryId);
+    public List<AndonOrdeDto> queryUserAndonHandelList(String factoryId, String orderStatus) {
+        return baseMapper.queryUserAndonHandelList(factoryId, orderStatus);
     }
 
 

--
Gitblit v1.9.3