using BPASmartClient.S7Net; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodBigStation.Model.Siemens { public class DL_Status_DB { /// /// 配料开始确认 /// public bool Dosing_Start_ACK { get; set; } /// /// 配料开始确认 /// public bool AGV_Request_Put { get; set; } public bool AGV_Request_Get { get; set; } public ushort AGV_Put_Done { get; set; } public ushort AGV_Get_Done { get; set; } public ushort AGV_GetPut_Pos { get; set; } public ushort[] Standby { get; set; } = new ushort[1]; [Siemens(16)] /// /// 生产工单 /// public string RecipeCode { get; set; } /// /// 配料开始 /// public bool Dosing_Start { get; set; } public bool Allow_Agv_Put { get; set; } public bool Allow_Agv_Get { get; set; } public bool Allow_Agv_Get_Empty { get; set; } public ushort Pallet_Position_Occ { get; set; } public ushort Dosing_Cancel9 { get; set; } public ushort[] Standby2 { get; set; } = new ushort[3]; } }