From fe891f627a483eb6298f12eca60cf7f274e31c88 Mon Sep 17 00:00:00 2001 From: cuilei <ray_tsu1@163.com> Date: 星期三, 20 八月 2025 16:54:43 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- 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..1ff6772 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,11 @@ 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.dto.AndonOrdeDto; import org.jeecg.modules.andon.entity.AndonButtonConfig; + +import java.util.List; /** * @Description: 瀹夌伅鎸夐挳閰嶇疆 @@ -11,4 +15,34 @@ */ public interface IAndonButtonConfigService extends IService<AndonButtonConfig> { AndonButtonConfig getAndonButtonById(String id); + + /** + * 鏌ヨ鐢ㄦ埛瀹夌伅鎸夐挳鍒楄〃 + * @param factoryId + * @return + */ + List<AndonButtonDTO> queryUserAndonButtonList(String factoryId); + + + /** + * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅鎸夐挳鍒楄〃 + * @param factoryId + * @return + */ + List<AndonOrdeDto> queryUserAndonCallList(String factoryId, String orderStatus); + + /** + * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅鍝嶅簲鍒楄〃 + * @param factoryId + * @return + */ + List<AndonOrdeDto> queryUserAndonRespondList(String factoryId,String orderStatus); + + /** + * 鏌ヨ鐢ㄦ埛鍙戣捣瀹夌伅澶勭悊鍒楄〃 + * @param factoryId + * @return + */ + List<AndonOrdeDto> queryUserAndonHandelList(String factoryId,String orderStatus); + } -- Gitblit v1.9.3