using BPASmartClient.JXJFoodSmallStation.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.JXJFoodSmallStation.Model { public class GVL_SmallStation { /// /// 往输送带下发配方完成 /// public bool IssueRecipeFinishStation1 { get; set; } = false; /// /// 配方下发状态 =0:配方未下发 ,1:配方下发给plc ,2:plc成功接收配方 /// public int RecipeStatusID { get; set; } = 0; /// /// 往输送带下发配方完成 /// public bool IssueRecipeFinishStation2 { get; set; } = false; public bool IsAllow { get; set; } = false; public bool IsAllowOut { set; get; } = false; /// /// 当前料仓的位置 /// public int StockInIsWork { get; set; } = 0; /// /// 单个配方执行完成标志 /// public bool RecipeFinish { get; set; } = false; /// /// 记录AGV进站送货的指令顺序 /// public int AgvDeliveryPosition { get; set; }= 0; /// /// 记录AGV进站取货的指令顺序 /// public int AgvPickUpPosition { get; set; } = 0; #region AGV进出站 从HK PLC读取 public bool Agv { get; set; } = false; #endregion } }