From 9df0ebfd0f23db7a798ec9998a0ca968737d7322 Mon Sep 17 00:00:00 2001
From: 肖洋 <cathay_xy@163.com>
Date: 星期六, 21 十二月 2024 10:15:17 +0800
Subject: [PATCH] 优化出库任务处理逻辑,添加查找其他出库任务的方法,改进任务排除机制
---
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Program.cs | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Program.cs b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Program.cs
index 7dc8b26..c7403ba 100644
--- a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Program.cs
+++ b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Program.cs
@@ -19,6 +19,7 @@
using WIDESEA_Core.Core;
using Swashbuckle.AspNetCore.SwaggerGen;
using Microsoft.OpenApi.Models;
+using WIDESEA_StorageTaskServices;
var builder = WebApplication.CreateBuilder(args);
@@ -109,6 +110,8 @@
}
});
+builder.Services.AddHostedService<MyBackgroundService>();
+
var app = builder.Build();
--
Gitblit v1.9.3