From a27f1b573fc5cf9a3b78e2eacb56e44310f83456 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期三, 27 八月 2025 12:17:01 +0800 Subject: [PATCH] art: 添加入库逻辑,SAP订单同步参数动态配置 --- src/main/java/org/jeecg/modules/andon/mapper/AndonResponseConfigMapper.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/jeecg/modules/andon/mapper/AndonResponseConfigMapper.java b/src/main/java/org/jeecg/modules/andon/mapper/AndonResponseConfigMapper.java index 85c537d..6801fdb 100644 --- a/src/main/java/org/jeecg/modules/andon/mapper/AndonResponseConfigMapper.java +++ b/src/main/java/org/jeecg/modules/andon/mapper/AndonResponseConfigMapper.java @@ -2,7 +2,10 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; +import org.jeecg.modules.andon.dto.AndonButtonDTO; import org.jeecg.modules.andon.entity.AndonResponseConfig; + +import java.util.List; /** * @Description: 瀹夌伅鍝嶅簲閰嶇疆 @@ -12,4 +15,5 @@ */ public interface AndonResponseConfigMapper extends BaseMapper<AndonResponseConfig> { AndonResponseConfig getAndonResponseConfigByFactoryIdAndButtonId(@Param("factoryId") String factoryId, @Param("buttonId") String buttonId); + } -- Gitblit v1.9.3