From 86fd3a8b7b8affed83663266dc5639f6bfe576de Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期四, 19 三月 2026 18:13:33 +0800
Subject: [PATCH] 工序绑定参数传参调整

---
 src/main/java/com/ruoyi/productionPlan/task/SalesDeliveryTask.java |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/productionPlan/task/SalesDeliveryTask.java b/src/main/java/com/ruoyi/productionPlan/task/SalesDeliveryTask.java
new file mode 100644
index 0000000..39ae998
--- /dev/null
+++ b/src/main/java/com/ruoyi/productionPlan/task/SalesDeliveryTask.java
@@ -0,0 +1,23 @@
+package com.ruoyi.productionPlan.task;
+
+
+import com.ruoyi.productionPlan.service.ProductionPlanService;
+import com.ruoyi.productionPlan.service.SalesDeliveryService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+
+
+//閿�鍞彂璐ф槑缁嗗鎺ュ疁鎼畾鏃朵换鍔�
+@Component
+public class SalesDeliveryTask {
+
+
+    @Autowired
+    private SalesDeliveryService salesDeliveryService;
+
+    @Scheduled(cron = "0 0 0 * * ?")
+    public void syncSalesDeliveryJob() {
+        salesDeliveryService.syncSalesDeliveryJob();
+    }
+}

--
Gitblit v1.9.3