24 lines
635 B
C#
24 lines
635 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|