WCSDevicePacks.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMS.Info.Models.WCSDeviceMonitor.WireRods
  7. {
  8. public class WCSDevicePacks
  9. {
  10. public List<AreasDevice> AreasDevices { get; set; }
  11. public List<SRMStation> SRMStations { get; set; }
  12. public List<WCSStation> WCSStations { get; set; }
  13. public List<WCSSRM> WCSSRMs { get; set; }
  14. public List<WCSAGV> WCSAGVs { get; set; }
  15. public List<FaultInfo> FaultInfos { get; set; }
  16. public DateTime Frame { get; set; }
  17. public string FrameTicks
  18. {
  19. get
  20. {
  21. return Frame.Ticks.ToString();
  22. }
  23. }
  24. public string Index { get; set; }
  25. }
  26. public class AreasDevice
  27. {
  28. /// <summary>
  29. /// 区域
  30. /// </summary>
  31. public string Areas { get; set; }
  32. /// <summary>
  33. /// 故障信息汇总
  34. /// </summary>
  35. public bool IsFault { get; set; }
  36. /// <summary>
  37. /// 自动 手动
  38. /// </summary>
  39. public bool IsAuto { get; set; }
  40. public List<WCSStation> WCSStations { get; set; }
  41. }
  42. }