终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

50 linhas
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 short AGV_Put_Done { get; set; }
  21. public short AGV_Get_Done { get; set; }
  22. public short AGV_GetPut_Pos { get; set; }
  23. public short[] Standby { get; set; } = new short[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 short Pallet_Position_Occ { get; set; }
  37. public short Dosing_Cancel9 { get; set; }
  38. public short[] Standby2 { get; set; } = new short[3];
  39. }
  40. }