using BPASmartClient.JXJFoodBigStation.Model.Siemens; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodBigStation.Model { public class GVL_BigStation { /// /// 往输送带下发配方完成 /// public bool IssueRecipeFinish { get; set; } = false; /// /// 当前料仓的位置 /// public int StockInIsWork { get; set; } = 0; /// /// 单个配方执行完成标志 /// public bool RecipeFinish { get; set; } = false; /// /// 记录AGV进站送货的指令顺序 /// public int AgvDeliveryPosition { get; set; } /// /// 记录AGV进站取货的指令顺序 /// public int AgvPickUpPosition { get; set; } /// /// 配方下发状态 =0:配方未下发 ,1:配方下发给plc ,2:plc成功接收配方 /// public int RecipeDosingStatus { get; set; } /// /// 是否处于手动下发配方 /// public bool IsAllowManual { get; set; } } }