终端一体化运控平台
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.
 
 
 

29 líneas
701 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.SmallBatchingSystem
  7. {
  8. public class PlcDataModel
  9. {
  10. public static bool[] TargetLocFeedback { get; set; } = new bool[16];
  11. /// <summary>
  12. /// 到达目标位置
  13. /// </summary>
  14. public static bool TargetLocComplete { get; set; }
  15. /// <summary>
  16. /// 通道配料完成
  17. /// </summary>
  18. public static bool BatchingCompleted { get; set; }
  19. /// <summary>
  20. /// 配方配料完成
  21. /// </summary>
  22. public static bool RecipeBatchingComplete { get; set; }
  23. }
  24. }