using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodSmallStation.Model.Siemens { internal class XL_Status_DB { /// /// 生产工单 /// public string Order_No; /// /// 配料开始 /// public bool Dosing_Start; /// /// 配料开始确认 /// public bool Dosing_Confirm; /// /// 托盘占位情况 /// public bool[] Pallet_Position_Occ = new bool[16]; /// /// 工位允许放货架 /// public bool[] Allow_AGV_Put = new bool[16]; /// /// 工位允许取货架 /// public bool[] Allow_AGV_Get = new bool[16]; /// /// AGV请求放货架 /// public bool[] AGV_Request_Put = new bool[16]; /// /// AGV请求取货架 /// public bool[] AGV_Request_Get = new bool[16]; /// /// AGV放托盘完成 /// public bool[] AGV_Put_Done = new bool[16]; /// /// 托盘号 /// public short[] Pan_No = new short[16]; /// /// 配料时间 /// public int DosingTime; /// /// 备用 /// public byte Reserve; } }