You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.1 KiB

3 years ago
  1. 
  2. using Leit.Model;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Leit.StationFunction
  9. {
  10. public partial class WorkStation
  11. {
  12. /// <summary>
  13. /// 工位标签信息
  14. /// </summary>
  15. public List<StationTagInfo> StationTagInfos { get; set; }
  16. /// <summary>
  17. /// 工位报警标签信息
  18. /// </summary>
  19. public List<StationTagInfo> StationAlarmTagInfos { get; set; }
  20. /// <summary>
  21. /// 工位质量数据标签信息
  22. /// </summary>
  23. public List<StationTagInfo> StationQualityTagInfos { get; set; }
  24. /// <summary>
  25. /// 工位交互数据标签信息
  26. /// </summary>
  27. public List<StationTagInfo> StationCommunicatedTagInfos { get; set; }
  28. /// <summary>
  29. /// 工位信息
  30. /// </summary>
  31. public StationInfo StationInf { get; set; }
  32. /// <summary>
  33. /// 业务逻辑
  34. /// </summary>
  35. public void CycleRunTimer()
  36. {
  37. }
  38. }
  39. }