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; } } }