- 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
- {
- /// <summary>
- /// 配料开始确认
- /// </summary>
- public bool Dosing_Start_ACK { get; set; }
- /// <summary>
- /// 配料开始确认
- /// </summary>
- public bool AGV_Request_Put { get; set; }
- public bool AGV_Request_Get { get; set; }
- public short AGV_Put_Done { get; set; }
-
- public short AGV_Get_Done { get; set; }
-
- public short AGV_GetPut_Pos { get; set; }
- public short[] Standby { get; set; } = new short[1];
- [Siemens(16)]
- /// <summary>
- /// 生产工单
- /// </summary>
- public string RecipeCode { get; set; }
- /// <summary>
- /// 配料开始
- /// </summary>
- 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 short Pallet_Position_Occ { get; set; }
-
- public short Dosing_Cancel9 { get; set; }
-
- public short[] Standby2 { get; set; } = new short[3];
- }
- }
|