From 14f982bf34e45b0ad5218212346cf2b33f0a6915 Mon Sep 17 00:00:00 2001 From: huangjiayang <5265313@qq.com> Date: 星期六, 10 五月 2025 18:06:16 +0800 Subject: [PATCH] 【ADD】1.新增同步物料定时任务 2.同步任务增加批次号 --- aps-api/aps-api-system/src/main/java/com/aps/system/api/factory/RemoteCoreFallbackFactory.java | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/aps-api/aps-api-system/src/main/java/com/aps/system/api/factory/RemoteCoreFallbackFactory.java b/aps-api/aps-api-system/src/main/java/com/aps/system/api/factory/RemoteCoreFallbackFactory.java index b2d846d..9e50240 100644 --- a/aps-api/aps-api-system/src/main/java/com/aps/system/api/factory/RemoteCoreFallbackFactory.java +++ b/aps-api/aps-api-system/src/main/java/com/aps/system/api/factory/RemoteCoreFallbackFactory.java @@ -21,6 +21,19 @@ public RemoteCoreService create(Throwable throwable) { log.error("浠诲姟鏈嶅姟璋冪敤澶辫触:{}", throwable.getMessage()); - return source -> R.fail("BOM鏁版嵁瀛樺偍鍒癛edis涓け璐�:" + throwable.getMessage()); + return new RemoteCoreService() + { + @Override + public R<Boolean> setBomDataToRedis(String source) + { + return R.fail("BOM鏁版嵁瀛樺偍鍒癛edis涓け璐�:" + throwable.getMessage()); + } + + @Override + public R<Boolean> setProcessRouteDataToRedis(String source) + { + return R.fail("宸ヨ壓璺嚎鏁版嵁瀛樺偍鍒癛edis涓け璐�:" + throwable.getMessage()); + } + }; } } -- Gitblit v1.9.3