using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkF { internal class GVL_MorkF { /// /// 初始化完成状态 /// public bool InitialComplete { get; set; } /// /// 供盘 模组状态 忙碌1 空闲0 /// public bool ProvidePlateModule { get; set; } /// /// 供盘完成状态 /// public bool ProvidePlateComplete { get; set; } /// /// 清洗模组1状态 忙碌1 空闲0 /// public bool CleanModule { get; set; } /// /// 清洗模组1完成状态 /// public bool CleanComplete { get; set; } /// /// 锅灶1状态 忙碌1 空闲0 /// public bool KitchenOneStatus { get; set; } /// /// 注油完成状态 /// public bool FallOilComplete { get; set; } /// /// 翻转机上升完成状态 /// public bool TurnMachineUpComplete { get; set; } /// /// 翻转机下降完成状态 /// public bool TurnMachineDownComplete { get; set; } /// /// 料仓旋转到位状态 /// public bool MaterialArriveComplete { get; set; } /// /// 机器人空闲状态 /// public bool RoobotIdle { get; set; } /// /// 放锅至灶台完成状态 /// public bool PutPotToKitchenComlete { get; set; } /// /// 机器人取料完成状态 /// public bool TakeMaterialComplete { get; set; } /// /// 机器人放锅至清洗台完成状态 /// public bool PlaceRinseTableComplete { get; set; } /// /// 订单取配料队列 /// public ConcurrentQueue TakeMaterialQueue = new ConcurrentQueue(); /// /// 订单供盘队列 /// public ConcurrentQueue TakePlateQueue = new ConcurrentQueue(); /// /// 存放当前订单唯一ID /// public string CurrentOrderId { get; set; } /// /// PLC上升沿初始化触发信号 /// public bool DevicDataInite { set; get; } /// /// 取素菜A料完成 /// public bool TakeVegBurdenAComplete { get; set; } /// /// 取荤菜A料完成 /// public bool TakeMeatBurdenAComplete { get; set; } /// /// 所有A料下锅完成 /// public bool TakeAllBurdenAComplete { get; set; } /// /// 取素菜B料完成 /// public bool TakeVegBurdenBComplete { get; set; } /// /// 所有B料下锅完成 /// public bool TakeAllBurdenBComplete { get; set; } /// /// 取C料完成 /// public bool TakeBurdenCComplete { get; set; } /// /// 除C料外,所有配料下锅标志 /// public bool TakeAllBurdenComplete { get; set; } /// /// 锅到位 true:到位 false:未到位 /// public bool PotInPlace { get; set; } /// /// true:烹饪完成 /// public bool CookingComplete { get; set; } /// /// 注油完成 /// public bool AddOilComplete { get; set; } /// /// 倒料完成 /// public bool FallMaterialComplete { get; set; } /// /// 供盘互锁 /// public bool TakePlateLock { get; set; } /// /// 取锅互锁 /// public bool TakePotLock { get; set; } /// /// 取素菜A料互锁 /// public bool TakeVegALock { get; set; } /// /// 取荤菜A料互锁 /// public bool TakeMeatALock { get; set; } /// /// 取素菜B料互锁 /// public bool TakeVegBLock { get; set; } /// /// 取C料互锁 /// public bool TakeBurdenCLcok { get; set; } /// /// 烹饪任务互锁 /// public bool CookingLock { get; set; } /// /// 转台互锁 /// public bool TurnTableLock { get; set; } public bool ProcessExcuteLock { get; set; } /// /// 开始取料标志 /// public bool AllowTakeMaterial { get; set; } /// /// 当前订单完成标志 /// public bool OutMealComplete { get; set; } } }