Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- 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 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)]
- /// <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 ushort Pallet_Position_Occ { get; set; }
-
- public ushort Dosing_Cancel9 { get; set; }
-
- public ushort[] Standby2 { get; set; } = new ushort[3];
- }
- }
|