first commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using JSMachine.WMS.App.Dto;
|
||||
using JSMachine.WMS.RPC.RcsRPC.Dto.In;
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JSMachine.WMS.Common.Cache
|
||||
{
|
||||
public class StockInSecondFloorCache
|
||||
{
|
||||
public static ConcurrentQueue<AllowPickUpInfo> StockInSecondFloorQue = new();
|
||||
}
|
||||
|
||||
public class AllowPickUpInfo
|
||||
{
|
||||
public ElevatorPlcQueueDto ElevatorPlcQueue { get; set; }
|
||||
public StorageRackDto StartWarehouseSecondFloor { get; set; }
|
||||
public AGVTaskDto AgvTask { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user