bug处理

This commit is contained in:
2024-06-24 13:01:42 +08:00
parent c0be9943f8
commit 7d6602ad12
6 changed files with 79 additions and 27 deletions

View File

@@ -76,9 +76,9 @@ namespace Tnb.WarehouseMgr
private readonly IRunService _runService;
public static SemaphoreSlim s_floor2CreatePretask = new(1);
public SemaphoreSlim s_taskCommonCreatePretask = new(1);
public SemaphoreSlim s_taskGenPreTask = new(1);
public SemaphoreSlim s_GenTaskExecute = new(1);
public static SemaphoreSlim s_taskCommonCreatePretask = new(1);
public static SemaphoreSlim s_taskGenPreTask = new(1);
public static SemaphoreSlim s_GenTaskExecute = new(1);
public Func<string, int, Task> AddUnExecuteTask { get; set; }