From df1fb5c1dac2432f6e92173dd1e36023bd55fd7a Mon Sep 17 00:00:00 2001
From: lixiangyu <lixiangyu@xalxzn.com>
Date: 星期一, 18 八月 2025 17:21:54 +0800
Subject: [PATCH] feat(CuttingInbound): 添加订单状态字典注解

---
 src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 insertions(+), 0 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 a3bd9e1..500343c 100644
--- a/src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java
+++ b/src/main/java/org/jeecg/modules/andon/service/IAndonButtonConfigService.java
@@ -1,7 +1,10 @@
 package org.jeecg.modules.andon.service;
 
 import com.baomidou.mybatisplus.extension.service.IService;
+import org.jeecg.modules.andon.dto.AndonButtonDTO;
 import org.jeecg.modules.andon.entity.AndonButtonConfig;
+
+import java.util.List;
 
 /**
  * @Description: 瀹夌伅鎸夐挳閰嶇疆
@@ -11,4 +14,35 @@
  */
 public interface IAndonButtonConfigService extends IService<AndonButtonConfig> {
     AndonButtonConfig getAndonButtonById(String id);
+
+    /**
+     * 鏌ヨ鐢ㄦ埛瀹夌伅鎸夐挳鍒楄〃
+     * @param factoryId
+     * @return
+     */
+    List<AndonButtonDTO> queryUserAndonButtonList(String factoryId);
+
+
+    /**
+     * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅鎸夐挳鍒楄〃
+     * @param factoryId
+     * @return
+     */
+    List<AndonButtonDTO> queryUserAndonCallList(String factoryId);
+
+    /**
+     * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅鍝嶅簲鍒楄〃
+     * @param factoryId
+     * @return
+     */
+    List<AndonButtonDTO> queryUserAndonRespondList(String factoryId);
+
+
+    /**
+     * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅澶勭悊鍒楄〃
+     * @param factoryId
+     * @return
+     */
+    List<AndonButtonDTO> queryUserAndonHandelList(String factoryId);
+
 }

--
Gitblit v1.9.3