终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

50 líneas
1.3 KiB

  1. using BPASmartClient.S7Net;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.JXJFoodBigStation.Model.Siemens
  8. {
  9. public class DL_Status_DB
  10. {
  11. /// <summary>
  12. /// 配料开始确认
  13. /// </summary>
  14. public bool Dosing_Start_ACK { get; set; }
  15. /// <summary>
  16. /// 配料开始确认
  17. /// </summary>
  18. public bool AGV_Request_Put { get; set; }
  19. public bool AGV_Request_Get { get; set; }
  20. public ushort AGV_Put_Done { get; set; }
  21. public ushort AGV_Get_Done { get; set; }
  22. public ushort AGV_GetPut_Pos { get; set; }
  23. public ushort[] Standby { get; set; } = new ushort[1];
  24. [Siemens(16)]
  25. /// <summary>
  26. /// 生产工单
  27. /// </summary>
  28. public string RecipeCode { get; set; }
  29. /// <summary>
  30. /// 配料开始
  31. /// </summary>
  32. public bool Dosing_Start { get; set; }
  33. public bool Allow_Agv_Put { get; set; }
  34. public bool Allow_Agv_Get { get; set; }
  35. public bool Allow_Agv_Get_Empty { get; set; }
  36. public ushort Pallet_Position_Occ { get; set; }
  37. public ushort Dosing_Cancel9 { get; set; }
  38. public ushort[] Standby2 { get; set; } = new ushort[3];
  39. }
  40. }